@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
 
@@ -2424,7 +2426,7 @@ class ToolbarNavigationComponent {
2424
2426
  }
2425
2427
  }
2426
2428
  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 });
2427
- 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: [
2429
+ 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: [
2428
2430
  PopupService
2429
2431
  ], viewQueries: [{ propertyName: "calendar", first: true, predicate: ["calendar"], descendants: true }], ngImport: i0, template: `
2430
2432
  <span class="k-scheduler-navigation k-button-group k-button-group-solid" role="group">
@@ -2482,6 +2484,8 @@ ToolbarNavigationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0
2482
2484
  <kendo-calendar
2483
2485
  #calendar
2484
2486
  (blur)="onBlur()"
2487
+ [activeView]="activeView"
2488
+ [bottomView]="bottomView"
2485
2489
  (keydown.escape)="toggleSelectedDate({ nativeElement: anchor }, template); anchor.focus();"
2486
2490
  (valueChange)="selectDate($event)"
2487
2491
  [value]="ctx.selectedDate | async" [min]="min" [max]="max">
@@ -2489,7 +2493,7 @@ ToolbarNavigationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0
2489
2493
  </kendo-calendar-messages>
2490
2494
  </kendo-calendar>
2491
2495
  </ng-template>
2492
- `, 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 });
2496
+ `, 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 });
2493
2497
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ToolbarNavigationComponent, decorators: [{
2494
2498
  type: Component,
2495
2499
  args: [{
@@ -2555,6 +2559,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
2555
2559
  <kendo-calendar
2556
2560
  #calendar
2557
2561
  (blur)="onBlur()"
2562
+ [activeView]="activeView"
2563
+ [bottomView]="bottomView"
2558
2564
  (keydown.escape)="toggleSelectedDate({ nativeElement: anchor }, template); anchor.focus();"
2559
2565
  (valueChange)="selectDate($event)"
2560
2566
  [value]="ctx.selectedDate | async" [min]="min" [max]="max">
@@ -2574,6 +2580,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
2574
2580
  type: Input
2575
2581
  }], max: [{
2576
2582
  type: Input
2583
+ }], activeView: [{
2584
+ type: Input
2585
+ }], bottomView: [{
2586
+ type: Input
2577
2587
  }] } });
2578
2588
 
2579
2589
  /**
@@ -2738,6 +2748,18 @@ class ToolbarComponent {
2738
2748
  this.subs = new Subscription();
2739
2749
  this.subs.add(service.action.subscribe(action => this.navigate.next(action)));
2740
2750
  }
2751
+ /**
2752
+ * @hidden
2753
+ */
2754
+ get activeView() {
2755
+ return this.service.context.selectedView?.name === 'year' ? 'decade' : 'month';
2756
+ }
2757
+ /**
2758
+ * @hidden
2759
+ */
2760
+ get bottomView() {
2761
+ return this.service.context.selectedView?.name === 'year' ? 'decade' : 'month';
2762
+ }
2741
2763
  ngOnInit() {
2742
2764
  this.subs.add(this.selectedDate.subscribe(date => this.templateContext.selectedDate = date));
2743
2765
  this.subs.add(this.dateRange.subscribe(dateRange => this.templateContext.dateRange = dateRange));
@@ -2777,13 +2799,18 @@ ToolbarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", versi
2777
2799
  </ng-template>
2778
2800
 
2779
2801
  <ng-template #defaultTemplate>
2780
- <div kendoSchedulerToolbarNavigation [min]="min" [max]="max"></div>
2802
+ <div kendoSchedulerToolbarNavigation
2803
+ [min]="min"
2804
+ [max]="max"
2805
+ [activeView]="activeView"
2806
+ [bottomView]="bottomView">
2807
+ </div>
2781
2808
  <span class="k-spacer"></span>
2782
2809
  <div kendoSchedulerToolbarViewSelector [toolbarWidth]="toolbarWidth"></div>
2783
2810
  </ng-template>
2784
2811
 
2785
2812
  <kendo-resize-sensor (resize)="resizeHandler()" [style]="'display: contents;'"></kendo-resize-sensor>
2786
- `, 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"] }] });
2813
+ `, 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"] }] });
2787
2814
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ToolbarComponent, decorators: [{
2788
2815
  type: Component,
2789
2816
  args: [{
@@ -2797,7 +2824,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
2797
2824
  </ng-template>
2798
2825
 
2799
2826
  <ng-template #defaultTemplate>
2800
- <div kendoSchedulerToolbarNavigation [min]="min" [max]="max"></div>
2827
+ <div kendoSchedulerToolbarNavigation
2828
+ [min]="min"
2829
+ [max]="max"
2830
+ [activeView]="activeView"
2831
+ [bottomView]="bottomView">
2832
+ </div>
2801
2833
  <span class="k-spacer"></span>
2802
2834
  <div kendoSchedulerToolbarViewSelector [toolbarWidth]="toolbarWidth"></div>
2803
2835
  </ng-template>
@@ -2935,7 +2967,7 @@ MultipleResourceEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion:
2935
2967
  {{ getField(dataItem, resource.textField) }}
2936
2968
  </ng-template>
2937
2969
  </kendo-multiselect>
2938
- `, 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]" }] });
2970
+ `, 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]" }] });
2939
2971
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: MultipleResourceEditorComponent, decorators: [{
2940
2972
  type: Component,
2941
2973
  args: [{
@@ -3077,7 +3109,8 @@ const SCHEDULER_DATETIMEPICKER_VALUE_ACCESSOR = {
3077
3109
  * @hidden
3078
3110
  */
3079
3111
  class SchedulerDateTimePickerComponent {
3080
- constructor() {
3112
+ constructor(localization) {
3113
+ this.localization = localization;
3081
3114
  this.valueChange = new EventEmitter();
3082
3115
  this.onTouchedCallback = (_) => { };
3083
3116
  this.onChangeCallback = (_) => { };
@@ -3088,6 +3121,9 @@ class SchedulerDateTimePickerComponent {
3088
3121
  get focusableId() {
3089
3122
  return this.isAllDay ? this.datePicker?.focusableId : this.dateTimePicker?.focusableId;
3090
3123
  }
3124
+ textFor(key) {
3125
+ return this.localization.get(key);
3126
+ }
3091
3127
  writeValue(newDate) {
3092
3128
  if (newDate instanceof Date) {
3093
3129
  this.date = newDate;
@@ -3116,7 +3152,7 @@ class SchedulerDateTimePickerComponent {
3116
3152
  this.onTouchedCallback = fn;
3117
3153
  }
3118
3154
  }
3119
- SchedulerDateTimePickerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SchedulerDateTimePickerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
3155
+ SchedulerDateTimePickerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SchedulerDateTimePickerComponent, deps: [{ token: SchedulerLocalizationService }], target: i0.ɵɵFactoryTarget.Component });
3120
3156
  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: [
3121
3157
  SCHEDULER_DATETIMEPICKER_VALUE_ACCESSOR
3122
3158
  ], viewQueries: [{ propertyName: "datePicker", first: true, predicate: ["datepicker"], descendants: true }, { propertyName: "dateTimePicker", first: true, predicate: ["datetimepicker"], descendants: true }], ngImport: i0, template: `
@@ -3125,14 +3161,38 @@ SchedulerDateTimePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion:
3125
3161
  #datepicker
3126
3162
  [(value)]='date'
3127
3163
  (valueChange)='onValueChange($event)'
3128
- ></kendo-datepicker>
3164
+ >
3165
+ <kendo-datepicker-messages
3166
+ [today]="textFor('editorDateInputsToday')"
3167
+ [toggle]="textFor('editorDateInputsToggle')"
3168
+ [parentViewButtonTitle]="textFor('editorDateInputsParentViewButton')"
3169
+ >
3170
+ </kendo-datepicker-messages>
3171
+ </kendo-datepicker>
3129
3172
  <kendo-datetimepicker
3130
3173
  *ngIf='!isAllDay'
3131
3174
  #datetimepicker
3132
3175
  [(value)]='date'
3133
3176
  (valueChange)='onValueChange($event)'
3134
3177
  >
3135
- `, 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"] }] });
3178
+ <kendo-datetimepicker-messages
3179
+ [toggle]="textFor('editorDateInputsToggle')"
3180
+ [today]="textFor('editorDateInputsToday')"
3181
+ [accept]="textFor('editorDateInputsAccept')"
3182
+ [acceptLabel]="textFor('editorDateInputsAcceptLabel')"
3183
+ [cancelLabel]="textFor('editorDateInputsCancelLabel')"
3184
+ [cancel]="textFor('editorDateInputsCancel')"
3185
+ [now]="textFor('editorDateInputsNow')"
3186
+ [nowLabel]="textFor('editorDateInputsNowLabel')"
3187
+ [dateTab]="textFor('editorDateInputsDateTab')"
3188
+ [dateTabLabel]="textFor('editorDateInputsDateTabLabel')"
3189
+ [timeTab]="textFor('editorDateInputsTimeTab')"
3190
+ [timeTabLabel]="textFor('editorDateInputsTimeTabLabel')"
3191
+ [parentViewButtonTitle]="textFor('editorDateInputsParentViewButton')"
3192
+ >
3193
+ </kendo-datetimepicker-messages>
3194
+ </kendo-datetimepicker>
3195
+ `, 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"] }] });
3136
3196
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SchedulerDateTimePickerComponent, decorators: [{
3137
3197
  type: Component,
3138
3198
  args: [{
@@ -3146,16 +3206,40 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
3146
3206
  #datepicker
3147
3207
  [(value)]='date'
3148
3208
  (valueChange)='onValueChange($event)'
3149
- ></kendo-datepicker>
3209
+ >
3210
+ <kendo-datepicker-messages
3211
+ [today]="textFor('editorDateInputsToday')"
3212
+ [toggle]="textFor('editorDateInputsToggle')"
3213
+ [parentViewButtonTitle]="textFor('editorDateInputsParentViewButton')"
3214
+ >
3215
+ </kendo-datepicker-messages>
3216
+ </kendo-datepicker>
3150
3217
  <kendo-datetimepicker
3151
3218
  *ngIf='!isAllDay'
3152
3219
  #datetimepicker
3153
3220
  [(value)]='date'
3154
3221
  (valueChange)='onValueChange($event)'
3155
3222
  >
3223
+ <kendo-datetimepicker-messages
3224
+ [toggle]="textFor('editorDateInputsToggle')"
3225
+ [today]="textFor('editorDateInputsToday')"
3226
+ [accept]="textFor('editorDateInputsAccept')"
3227
+ [acceptLabel]="textFor('editorDateInputsAcceptLabel')"
3228
+ [cancelLabel]="textFor('editorDateInputsCancelLabel')"
3229
+ [cancel]="textFor('editorDateInputsCancel')"
3230
+ [now]="textFor('editorDateInputsNow')"
3231
+ [nowLabel]="textFor('editorDateInputsNowLabel')"
3232
+ [dateTab]="textFor('editorDateInputsDateTab')"
3233
+ [dateTabLabel]="textFor('editorDateInputsDateTabLabel')"
3234
+ [timeTab]="textFor('editorDateInputsTimeTab')"
3235
+ [timeTabLabel]="textFor('editorDateInputsTimeTabLabel')"
3236
+ [parentViewButtonTitle]="textFor('editorDateInputsParentViewButton')"
3237
+ >
3238
+ </kendo-datetimepicker-messages>
3239
+ </kendo-datetimepicker>
3156
3240
  `
3157
3241
  }]
3158
- }], propDecorators: { datePicker: [{
3242
+ }], ctorParameters: function () { return [{ type: SchedulerLocalizationService }]; }, propDecorators: { datePicker: [{
3159
3243
  type: ViewChild,
3160
3244
  args: ['datepicker']
3161
3245
  }], dateTimePicker: [{
@@ -3258,7 +3342,7 @@ TimeZoneEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
3258
3342
  (filterChange)="onTimeZoneFilterChange($event)"
3259
3343
  (valueChange)="onTimeZoneChange($event)">
3260
3344
  </kendo-combobox>
3261
- `, 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"] }] });
3345
+ `, 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"] }] });
3262
3346
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TimeZoneEditorComponent, decorators: [{
3263
3347
  type: Component,
3264
3348
  args: [{
@@ -3711,7 +3795,7 @@ class RecurrenceIntervalEditorComponent {
3711
3795
  return this.localization.get(key);
3712
3796
  }
3713
3797
  }
3714
- 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 });
3798
+ 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 });
3715
3799
  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: `
3716
3800
  <div class="k-form-field">
3717
3801
  <kendo-label
@@ -3736,12 +3820,18 @@ RecurrenceIntervalEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion
3736
3820
  [title]="numericOptions.title"
3737
3821
  [(value)]="intervalValue"
3738
3822
  (blur)="onIntervalBlur()"
3739
- (valueChange)="onIntervalChange($event)">
3823
+ (valueChange)="onIntervalChange($event)"
3824
+ >
3825
+ <kendo-numerictextbox-messages
3826
+ [increment]="textFor('recurrenceEditorNumericIncrement')"
3827
+ [decrement]="textFor('recurrenceEditorNumericDecrement')"
3828
+ >
3829
+ </kendo-numerictextbox-messages>
3740
3830
  </kendo-numerictextbox>
3741
3831
  <span>&nbsp;{{ textForFrequency() }}</span>
3742
3832
  </div>
3743
3833
  </div>
3744
- `, 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"] }] });
3834
+ `, 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" }] });
3745
3835
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceIntervalEditorComponent, decorators: [{
3746
3836
  type: Component,
3747
3837
  args: [{
@@ -3770,14 +3860,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
3770
3860
  [title]="numericOptions.title"
3771
3861
  [(value)]="intervalValue"
3772
3862
  (blur)="onIntervalBlur()"
3773
- (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>
3774
3870
  </kendo-numerictextbox>
3775
3871
  <span>&nbsp;{{ textForFrequency() }}</span>
3776
3872
  </div>
3777
3873
  </div>
3778
3874
  `
3779
3875
  }]
3780
- }], ctorParameters: function () { return [{ type: RecurrenceService }, { type: i1$1.LocalizationService }]; }, propDecorators: { cssClass: [{
3876
+ }], ctorParameters: function () { return [{ type: RecurrenceService }, { type: SchedulerLocalizationService }]; }, propDecorators: { cssClass: [{
3781
3877
  type: HostBinding,
3782
3878
  args: ['class.k-scheduler-recurrence-interval-editor']
3783
3879
  }], userNumericOptions: [{
@@ -4181,7 +4277,7 @@ class RecurrenceMonthlyYearlyEditorComponent {
4181
4277
  }
4182
4278
  }
4183
4279
  }
4184
- 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 });
4280
+ 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 });
4185
4281
  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: `
4186
4282
  <div class='k-form-field'>
4187
4283
  <kendo-label
@@ -4229,7 +4325,13 @@ RecurrenceMonthlyYearlyEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVe
4229
4325
  [title]="numericOptions.title"
4230
4326
  [value]='monthDay'
4231
4327
  (valueChange)='onMonthDayChange($event)'
4232
- [disabled]="isDisabled('monthday')">
4328
+ [disabled]="isDisabled('monthday')"
4329
+ >
4330
+ <kendo-numerictextbox-messages
4331
+ [increment]="textFor('recurrenceEditorNumericIncrement')"
4332
+ [decrement]="textFor('recurrenceEditorNumericDecrement')"
4333
+ >
4334
+ </kendo-numerictextbox-messages>
4233
4335
  </kendo-numerictextbox>
4234
4336
  </li>
4235
4337
  <li class='k-radio-list-item'>
@@ -4278,7 +4380,7 @@ RecurrenceMonthlyYearlyEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVe
4278
4380
  </ul>
4279
4381
  </div>
4280
4382
  </div>
4281
- `, 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"] }] });
4383
+ `, 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"] }] });
4282
4384
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceMonthlyYearlyEditorComponent, decorators: [{
4283
4385
  type: Component,
4284
4386
  args: [{
@@ -4330,7 +4432,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
4330
4432
  [title]="numericOptions.title"
4331
4433
  [value]='monthDay'
4332
4434
  (valueChange)='onMonthDayChange($event)'
4333
- [disabled]="isDisabled('monthday')">
4435
+ [disabled]="isDisabled('monthday')"
4436
+ >
4437
+ <kendo-numerictextbox-messages
4438
+ [increment]="textFor('recurrenceEditorNumericIncrement')"
4439
+ [decrement]="textFor('recurrenceEditorNumericDecrement')"
4440
+ >
4441
+ </kendo-numerictextbox-messages>
4334
4442
  </kendo-numerictextbox>
4335
4443
  </li>
4336
4444
  <li class='k-radio-list-item'>
@@ -4381,7 +4489,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
4381
4489
  </div>
4382
4490
  `
4383
4491
  }]
4384
- }], ctorParameters: function () { return [{ type: RecurrenceService }, { type: i1$1.LocalizationService }]; }, propDecorators: { userNumericOptions: [{
4492
+ }], ctorParameters: function () { return [{ type: RecurrenceService }, { type: SchedulerLocalizationService }]; }, propDecorators: { userNumericOptions: [{
4385
4493
  type: Input
4386
4494
  }], repeatOnRadioButtons: [{
4387
4495
  type: ViewChildren,
@@ -4556,7 +4664,7 @@ class RecurrenceEndRuleEditorComponent {
4556
4664
  return ZonedDate.fromUTCDate(untilDate, this.recurrence.timezone).toLocalDate();
4557
4665
  }
4558
4666
  }
4559
- 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 });
4667
+ 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 });
4560
4668
  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: `
4561
4669
  <div class="k-form-field">
4562
4670
  <kendo-label
@@ -4594,7 +4702,13 @@ RecurrenceEndRuleEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion:
4594
4702
  [title]="numericOptions.title"
4595
4703
  [(value)]='countValue'
4596
4704
  (blur)="onCountBlur()"
4597
- (valueChange)='onCountChange($event)'>
4705
+ (valueChange)='onCountChange($event)'
4706
+ >
4707
+ <kendo-numerictextbox-messages
4708
+ [increment]="textFor('recurrenceEditorNumericIncrement')"
4709
+ [decrement]="textFor('recurrenceEditorNumericDecrement')"
4710
+ >
4711
+ </kendo-numerictextbox-messages>
4598
4712
  </kendo-numerictextbox>
4599
4713
  <span>{{ textFor('endOccurrence') }}</span>
4600
4714
  </li>
@@ -4626,13 +4740,20 @@ RecurrenceEndRuleEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion:
4626
4740
  [popupSettings]="datePickerOptions.popupSettings"
4627
4741
  [(value)]='untilValue'
4628
4742
  (blur)="onUntilBlur()"
4629
- (valueChange)='onUntilChange($event)'>
4743
+ (valueChange)='onUntilChange($event)'
4744
+ >
4745
+ <kendo-datepicker-messages
4746
+ [today]="textFor('editorDateInputsToday')"
4747
+ [toggle]="textFor('editorDateInputsToggle')"
4748
+ [parentViewButtonTitle]="textFor('editorDateInputsParentViewButton')"
4749
+ >
4750
+ </kendo-datepicker-messages>
4630
4751
  </kendo-datepicker>
4631
4752
  </li>
4632
4753
  </ul>
4633
4754
  </div>
4634
4755
  </div>
4635
- `, 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"] }] });
4756
+ `, 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"] }] });
4636
4757
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceEndRuleEditorComponent, decorators: [{
4637
4758
  type: Component,
4638
4759
  args: [{
@@ -4674,7 +4795,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
4674
4795
  [title]="numericOptions.title"
4675
4796
  [(value)]='countValue'
4676
4797
  (blur)="onCountBlur()"
4677
- (valueChange)='onCountChange($event)'>
4798
+ (valueChange)='onCountChange($event)'
4799
+ >
4800
+ <kendo-numerictextbox-messages
4801
+ [increment]="textFor('recurrenceEditorNumericIncrement')"
4802
+ [decrement]="textFor('recurrenceEditorNumericDecrement')"
4803
+ >
4804
+ </kendo-numerictextbox-messages>
4678
4805
  </kendo-numerictextbox>
4679
4806
  <span>{{ textFor('endOccurrence') }}</span>
4680
4807
  </li>
@@ -4706,7 +4833,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
4706
4833
  [popupSettings]="datePickerOptions.popupSettings"
4707
4834
  [(value)]='untilValue'
4708
4835
  (blur)="onUntilBlur()"
4709
- (valueChange)='onUntilChange($event)'>
4836
+ (valueChange)='onUntilChange($event)'
4837
+ >
4838
+ <kendo-datepicker-messages
4839
+ [today]="textFor('editorDateInputsToday')"
4840
+ [toggle]="textFor('editorDateInputsToggle')"
4841
+ [parentViewButtonTitle]="textFor('editorDateInputsParentViewButton')"
4842
+ >
4843
+ </kendo-datepicker-messages>
4710
4844
  </kendo-datepicker>
4711
4845
  </li>
4712
4846
  </ul>
@@ -4714,7 +4848,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
4714
4848
  </div>
4715
4849
  `
4716
4850
  }]
4717
- }], ctorParameters: function () { return [{ type: RecurrenceService }, { type: i1$1.LocalizationService }]; }, propDecorators: { cssClass: [{
4851
+ }], ctorParameters: function () { return [{ type: RecurrenceService }, { type: SchedulerLocalizationService }]; }, propDecorators: { cssClass: [{
4718
4852
  type: HostBinding,
4719
4853
  args: ['class.k-scheduler-recurrence-end-rule-editor']
4720
4854
  }], userNumericOptions: [{
@@ -5837,7 +5971,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
5837
5971
  class Messages extends ComponentMessages {
5838
5972
  }
5839
5973
  Messages.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: Messages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
5840
- 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 });
5974
+ 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 });
5841
5975
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: Messages, decorators: [{
5842
5976
  type: Directive
5843
5977
  }], propDecorators: { allEvents: [{
@@ -5884,6 +6018,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
5884
6018
  type: Input
5885
6019
  }], agendaViewTitle: [{
5886
6020
  type: Input
6021
+ }], yearViewTitle: [{
6022
+ type: Input
6023
+ }], yearViewNoEvents: [{
6024
+ type: Input
5887
6025
  }], cancel: [{
5888
6026
  type: Input
5889
6027
  }], save: [{
@@ -5906,6 +6044,36 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
5906
6044
  type: Input
5907
6045
  }], editorEventTimeZone: [{
5908
6046
  type: Input
6047
+ }], editorDateInputsToday: [{
6048
+ type: Input
6049
+ }], editorDateInputsToggle: [{
6050
+ type: Input
6051
+ }], editorDateInputsParentViewButton: [{
6052
+ type: Input
6053
+ }], editorDateInputsNow: [{
6054
+ type: Input
6055
+ }], editorDateInputsNowLabel: [{
6056
+ type: Input
6057
+ }], editorDateInputsAccept: [{
6058
+ type: Input
6059
+ }], editorDateInputsAcceptLabel: [{
6060
+ type: Input
6061
+ }], editorDateInputsCancel: [{
6062
+ type: Input
6063
+ }], editorDateInputsCancelLabel: [{
6064
+ type: Input
6065
+ }], editorDateInputsDateTab: [{
6066
+ type: Input
6067
+ }], editorDateInputsDateTabLabel: [{
6068
+ type: Input
6069
+ }], editorDateInputsTimeTab: [{
6070
+ type: Input
6071
+ }], editorDateInputsTimeTabLabel: [{
6072
+ type: Input
6073
+ }], recurrenceEditorNumericIncrement: [{
6074
+ type: Input
6075
+ }], recurrenceEditorNumericDecrement: [{
6076
+ type: Input
5909
6077
  }], recurrenceEditorRepeat: [{
5910
6078
  type: Input
5911
6079
  }], recurrenceEditorDailyInterval: [{
@@ -6926,112 +7094,163 @@ SchedulerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ver
6926
7094
  i18n-agendaViewTitle="kendo.scheduler.agendaViewTitle|The agenda view title."
6927
7095
  agendaViewTitle="Agenda"
6928
7096
 
6929
- i18n-cancel="kendo.scheduler.cancel|The text similar to 'Cancel' displayed in scheduler."
7097
+ i18n-yearViewTitle="kendo.scheduler.yearViewTitle|The year view title."
7098
+ yearViewTitle="Year"
7099
+
7100
+ i18n-yearViewNoEvents="kendo.scheduler.yearViewNoEvents|The year view no events message."
7101
+ yearViewNoEvents="No events on this date."
7102
+
7103
+ i18n-cancel="kendo.scheduler.cancel|The text similar to 'Cancel' displayed in the Scheduler."
6930
7104
  cancel="Cancel"
6931
7105
 
6932
- i18n-save="kendo.scheduler.save|The text similar to 'Save' displayed in scheduler."
7106
+ i18n-save="kendo.scheduler.save|The text similar to 'Save' displayed in the Scheduler."
6933
7107
  save="Save"
6934
7108
 
6935
- i18n-editorEventTitle="kendo.scheduler.editorEventTitle|The text similar to 'Title' displayed in the scheduler event editor."
7109
+ i18n-editorEventTitle="kendo.scheduler.editorEventTitle|The text similar to 'Title' displayed in the Scheduler event editor."
6936
7110
  editorEventTitle='Title'
6937
7111
 
6938
- i18n-editorEventStart="kendo.scheduler.editorEventStart|The text similar to 'Start' displayed in the scheduler event editor."
7112
+ i18n-editorEventStart="kendo.scheduler.editorEventStart|The text similar to 'Start' displayed in the Scheduler event editor."
6939
7113
  editorEventStart="Start"
6940
7114
 
6941
- i18n-editorEventStartTimeZone="kendo.scheduler.editorEventStartTimeZone|The text similar to 'Start Time Zone' displayed in the scheduler event editor."
7115
+ i18n-editorEventStartTimeZone="kendo.scheduler.editorEventStartTimeZone|The text similar to 'Start Time Zone' displayed in the Scheduler event editor."
6942
7116
  editorEventStartTimeZone="Start Time Zone"
6943
7117
 
6944
- i18n-editorEventEnd="kendo.scheduler.editorEventEnd|The text similar to 'End' displayed in the scheduler event editor."
7118
+ i18n-editorEventEnd="kendo.scheduler.editorEventEnd|The text similar to 'End' displayed in the Scheduler event editor."
6945
7119
  editorEventEnd="End"
6946
7120
 
6947
- i18n-editorEventEndTimeZone="kendo.scheduler.editorEventEndTimeZone|The text similar to 'End Time Zone' displayed in the scheduler event editor."
7121
+ i18n-editorEventEndTimeZone="kendo.scheduler.editorEventEndTimeZone|The text similar to 'End Time Zone' displayed in the Scheduler event editor."
6948
7122
  editorEventEndTimeZone="End Time Zone"
6949
7123
 
6950
- i18n-editorEventAllDay="kendo.scheduler.editorEventAllDay|The text similar to 'All Day event' displayed in the scheduler event editor."
7124
+ i18n-editorEventAllDay="kendo.scheduler.editorEventAllDay|The text similar to 'All Day event' displayed in the Scheduler event editor."
6951
7125
  editorEventAllDay="All Day Event"
6952
7126
 
6953
- i18n-editorEventDescription="kendo.scheduler.editorEventDescription|The text similar to 'Description' displayed in the scheduler event editor."
7127
+ i18n-editorEventDescription="kendo.scheduler.editorEventDescription|The text similar to 'Description' displayed in the Scheduler event editor."
6954
7128
  editorEventDescription="Description"
6955
7129
 
6956
- i18n-editorEventSeparateTimeZones="kendo.scheduler.editorEventSeparateTimeZones|The text similar to 'Use separate Start and End Time Zones' displayed in the scheduler event editor."
7130
+ i18n-editorEventSeparateTimeZones="kendo.scheduler.editorEventSeparateTimeZones|The text similar to 'Use separate Start and End Time Zones' displayed in the Scheduler event editor."
6957
7131
  editorEventSeparateTimeZones="End in different Time Zone"
6958
7132
 
6959
- i18n-editorEventTimeZone="kendo.scheduler.editorEventTimeZone|The text similar to 'Time Zone' displayed in the scheduler event editor."
7133
+ i18n-editorEventTimeZone="kendo.scheduler.editorEventTimeZone|The text similar to 'Time Zone' displayed in the Scheduler event editor."
6960
7134
  editorEventTimeZone='Specify Time Zone'
6961
7135
 
6962
- i18n-editorTitle="kendo.scheduler.editorTitle|The text similar to 'Event' displayed as title of the scheduler event editor."
7136
+ i18n-editorTitle="kendo.scheduler.editorTitle|The text similar to 'Event' displayed as title of the Scheduler event editor."
6963
7137
  editorTitle='Event'
6964
7138
 
6965
- i18n-recurrenceEditorRepeat="kendo.scheduler.recurrenceEditorRepeat|The text similar to 'Repeat' displayed in the scheduler recurrence editor."
7139
+ i18n-editorDateInputsToday="kendo.scheduler.editorDateInputsToday|The Today button text in the popup of the DateTimePickers and DatePickers in the Scheduler event editor."
7140
+ editorDateInputsToday='Today'
7141
+
7142
+ i18n-editorDateInputsToggle="kendo.scheduler.editorDateInputsToggle|The title of the Toggle button of the DateTimePickers and DatePickers in the Scheduler event editor."
7143
+ editorDateInputsToggle='Toggle calendar'
7144
+
7145
+ 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."
7146
+ editorDateInputsParentViewButton='Navigate to parent view'
7147
+
7148
+ 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."
7149
+ editorDateInputsAccept='Now'
7150
+
7151
+ 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."
7152
+ editorDateInputsAcceptLabel='Select now'
7153
+
7154
+ 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."
7155
+ editorDateInputsAccept='Set'
7156
+
7157
+ 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."
7158
+ editorDateInputsAcceptLabel='Set'
7159
+
7160
+ 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."
7161
+ editorDateInputsCancel='Cancel'
7162
+
7163
+ 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."
7164
+ editorDateInputsCancelLabel='Cancel'
7165
+
7166
+ 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."
7167
+ editorDateInputsDateTab='Date'
7168
+
7169
+ 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."
7170
+ editorDateInputsDateTabLabel='Date tab'
7171
+
7172
+ 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."
7173
+ editorDateInputsTimeTab='Time'
7174
+
7175
+ 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."
7176
+ editorDateInputsTimeTabLabel='Time tab'
7177
+
7178
+ i18n-recurrenceEditorNumericIncrement="kendo.scheduler.editorNumericIncrement|The title of the Increment button of the NumericTextBox in the Scheduler recurrence editor."
7179
+ recurrenceEditorNumericIncrement='Increase value'
7180
+
7181
+ i18n-recurrenceEditorNumericDecrement="kendo.scheduler.editorNumericDecrement|The title of the Decrement button of the NumericTextBox in the Scheduler recurrence editor."
7182
+ recurrenceEditorNumericDecrement='Decrease value'
7183
+
7184
+ i18n-recurrenceEditorRepeat="kendo.scheduler.recurrenceEditorRepeat|The text similar to 'Repeat' displayed in the Scheduler recurrence editor."
6966
7185
  recurrenceEditorRepeat='Repeat'
6967
7186
 
6968
- i18n-recurrenceEditorDailyInterval="kendo.scheduler.recurrenceEditorDailyInterval|The text similar to 'day(s)' displayed in the scheduler recurrence editor."
7187
+ i18n-recurrenceEditorDailyInterval="kendo.scheduler.recurrenceEditorDailyInterval|The text similar to 'day(s)' displayed in the Scheduler recurrence editor."
6969
7188
  recurrenceEditorDailyInterval='day(s)'
6970
7189
 
6971
- i18n-recurrenceEditorDailyRepeatEvery="kendo.scheduler.recurrenceEditorDailyRepeatEvery|The text similar to 'Repeat every' displayed in the scheduler recurrence editor."
7190
+ i18n-recurrenceEditorDailyRepeatEvery="kendo.scheduler.recurrenceEditorDailyRepeatEvery|The text similar to 'Repeat every' displayed in the Scheduler recurrence editor."
6972
7191
  recurrenceEditorDailyRepeatEvery='Repeat every'
6973
7192
 
6974
- i18n-recurrenceEditorWeeklyInterval="kendo.scheduler.recurrenceEditorWeeklyInterval|The text similar to 'week(s)' displayed in the scheduler recurrence editor."
7193
+ i18n-recurrenceEditorWeeklyInterval="kendo.scheduler.recurrenceEditorWeeklyInterval|The text similar to 'week(s)' displayed in the Scheduler recurrence editor."
6975
7194
  recurrenceEditorWeeklyInterval='week(s)'
6976
7195
 
6977
- i18n-recurrenceEditorWeeklyRepeatEvery="kendo.scheduler.recurrenceEditorWeeklyRepeatEvery|The text similar to 'Repeat every' displayed in the scheduler recurrence editor."
7196
+ i18n-recurrenceEditorWeeklyRepeatEvery="kendo.scheduler.recurrenceEditorWeeklyRepeatEvery|The text similar to 'Repeat every' displayed in the Scheduler recurrence editor."
6978
7197
  recurrenceEditorWeeklyRepeatEvery='Repeat every'
6979
7198
 
6980
- i18n-recurrenceEditorWeeklyRepeatOn="kendo.scheduler.recurrenceEditorWeeklyRepeatOn|The text similar to 'Repeat on' displayed in the scheduler recurrence editor."
7199
+ i18n-recurrenceEditorWeeklyRepeatOn="kendo.scheduler.recurrenceEditorWeeklyRepeatOn|The text similar to 'Repeat on' displayed in the Scheduler recurrence editor."
6981
7200
  recurrenceEditorWeeklyRepeatOn='Repeat on'
6982
7201
 
6983
- i18n-recurrenceEditorMonthlyDay="kendo.scheduler.recurrenceEditorMonthlyDay|The text similar to 'Day' displayed in the scheduler recurrence editor."
7202
+ i18n-recurrenceEditorMonthlyDay="kendo.scheduler.recurrenceEditorMonthlyDay|The text similar to 'Day' displayed in the Scheduler recurrence editor."
6984
7203
  recurrenceEditorMonthlyDay='Day'
6985
7204
 
6986
- i18n-recurrenceEditorMonthlyInterval="kendo.scheduler.recurrenceEditorMonthlyInterval|The text similar to 'month(s)' displayed in the scheduler recurrence editor."
7205
+ i18n-recurrenceEditorMonthlyInterval="kendo.scheduler.recurrenceEditorMonthlyInterval|The text similar to 'month(s)' displayed in the Scheduler recurrence editor."
6987
7206
  recurrenceEditorMonthlyInterval='month(s)'
6988
7207
 
6989
- i18n-recurrenceEditorMonthlyRepeatEvery="kendo.scheduler.recurrenceEditorMonthlyRepeatEvery|The text similar to 'Repeat every' displayed in the scheduler recurrence editor."
7208
+ i18n-recurrenceEditorMonthlyRepeatEvery="kendo.scheduler.recurrenceEditorMonthlyRepeatEvery|The text similar to 'Repeat every' displayed in the Scheduler recurrence editor."
6990
7209
  recurrenceEditorMonthlyRepeatEvery='Repeat every'
6991
7210
 
6992
- i18n-recurrenceEditorMonthlyRepeatOn="kendo.scheduler.recurrenceEditorMonthlyRepeatOn|The text similar to 'Repeat on' displayed in the scheduler recurrence editor."
7211
+ i18n-recurrenceEditorMonthlyRepeatOn="kendo.scheduler.recurrenceEditorMonthlyRepeatOn|The text similar to 'Repeat on' displayed in the Scheduler recurrence editor."
6993
7212
  recurrenceEditorMonthlyRepeatOn='Repeat on'
6994
7213
 
6995
- i18n-recurrenceEditorYearlyOf="kendo.scheduler.recurrenceEditorYearlyOf|The text similar to 'of' displayed in the scheduler recurrence editor."
7214
+ i18n-recurrenceEditorYearlyOf="kendo.scheduler.recurrenceEditorYearlyOf|The text similar to 'of' displayed in the Scheduler recurrence editor."
6996
7215
  recurrenceEditorYearlyOf='of'
6997
7216
 
6998
- i18n-recurrenceEditorYearlyRepeatEvery="kendo.scheduler.recurrenceEditorYearlyRepeatEvery|The text similar to 'Repeat every' displayed in the scheduler recurrence editor."
7217
+ i18n-recurrenceEditorYearlyRepeatEvery="kendo.scheduler.recurrenceEditorYearlyRepeatEvery|The text similar to 'Repeat every' displayed in the Scheduler recurrence editor."
6999
7218
  recurrenceEditorYearlyRepeatEvery='Repeat every'
7000
7219
 
7001
- i18n-recurrenceEditorYearlyRepeatOn="kendo.scheduler.recurrenceEditorYearlyRepeatOn|The text similar to 'Repeat on' displayed in the scheduler recurrence editor."
7220
+ i18n-recurrenceEditorYearlyRepeatOn="kendo.scheduler.recurrenceEditorYearlyRepeatOn|The text similar to 'Repeat on' displayed in the Scheduler recurrence editor."
7002
7221
  recurrenceEditorYearlyRepeatOn='Repeat on'
7003
7222
 
7004
- i18n-recurrenceEditorYearlyInterval="kendo.scheduler.recurrenceEditorYearlyInterval|The text similar to 'year(s)' displayed in the scheduler recurrence editor."
7223
+ i18n-recurrenceEditorYearlyInterval="kendo.scheduler.recurrenceEditorYearlyInterval|The text similar to 'year(s)' displayed in the Scheduler recurrence editor."
7005
7224
  recurrenceEditorYearlyInterval='year(s)'
7006
7225
 
7007
- i18n-recurrenceEditorFrequenciesDaily="kendo.scheduler.recurrenceEditorFrequenciesDaily|The text similar to 'Daily' displayed in the scheduler recurrence editor."
7226
+ i18n-recurrenceEditorFrequenciesDaily="kendo.scheduler.recurrenceEditorFrequenciesDaily|The text similar to 'Daily' displayed in the Scheduler recurrence editor."
7008
7227
  recurrenceEditorFrequenciesDaily='Daily'
7009
7228
 
7010
- i18n-recurrenceEditorFrequenciesMonthly="kendo.scheduler.recurrenceEditorFrequenciesMonthly|The text similar to 'Monthly' displayed in the scheduler recurrence editor."
7229
+ i18n-recurrenceEditorFrequenciesMonthly="kendo.scheduler.recurrenceEditorFrequenciesMonthly|The text similar to 'Monthly' displayed in the Scheduler recurrence editor."
7011
7230
  recurrenceEditorFrequenciesMonthly='Monthly'
7012
7231
 
7013
- i18n-recurrenceEditorFrequenciesNever="kendo.scheduler.recurrenceEditorFrequenciesNever|The text similar to 'Never' displayed in the scheduler recurrence editor."
7232
+ i18n-recurrenceEditorFrequenciesNever="kendo.scheduler.recurrenceEditorFrequenciesNever|The text similar to 'Never' displayed in the Scheduler recurrence editor."
7014
7233
  recurrenceEditorFrequenciesNever='Never'
7015
7234
 
7016
- i18n-recurrenceEditorFrequenciesWeekly="kendo.scheduler.recurrenceEditorFrequenciesWeekly|The text similar to 'Weekly' displayed in the scheduler recurrence editor."
7235
+ i18n-recurrenceEditorFrequenciesWeekly="kendo.scheduler.recurrenceEditorFrequenciesWeekly|The text similar to 'Weekly' displayed in the Scheduler recurrence editor."
7017
7236
  recurrenceEditorFrequenciesWeekly='Weekly'
7018
7237
 
7019
- i18n-recurrenceEditorFrequenciesYearly="kendo.scheduler.recurrenceEditorFrequenciesYearly|The text similar to 'Yearly' displayed in the scheduler recurrence editor."
7238
+ i18n-recurrenceEditorFrequenciesYearly="kendo.scheduler.recurrenceEditorFrequenciesYearly|The text similar to 'Yearly' displayed in the Scheduler recurrence editor."
7020
7239
  recurrenceEditorFrequenciesYearly='Yearly'
7021
7240
 
7022
- i18n-recurrenceEditorOffsetPositionsFirst="kendo.scheduler.recurrenceEditorOffsetPositionsFirst|The text similar to 'First' displayed in the scheduler recurrence editor."
7241
+ i18n-recurrenceEditorOffsetPositionsFirst="kendo.scheduler.recurrenceEditorOffsetPositionsFirst|The text similar to 'First' displayed in the Scheduler recurrence editor."
7023
7242
  recurrenceEditorOffsetPositionsFirst='First'
7024
7243
 
7025
- i18n-recurrenceEditorOffsetPositionsSecond="kendo.scheduler.recurrenceEditorOffsetPositionsSecond|The text similar to 'Second' displayed in the scheduler recurrence editor."
7244
+ i18n-recurrenceEditorOffsetPositionsSecond="kendo.scheduler.recurrenceEditorOffsetPositionsSecond|The text similar to 'Second' displayed in the Scheduler recurrence editor."
7026
7245
  recurrenceEditorOffsetPositionsSecond='Second'
7027
7246
 
7028
- i18n-recurrenceEditorOffsetPositionsThird="kendo.scheduler.recurrenceEditorOffsetPositionsThird|The text similar to 'Third' displayed in the scheduler recurrence editor."
7247
+ i18n-recurrenceEditorOffsetPositionsThird="kendo.scheduler.recurrenceEditorOffsetPositionsThird|The text similar to 'Third' displayed in the Scheduler recurrence editor."
7029
7248
  recurrenceEditorOffsetPositionsThird='Third'
7030
7249
 
7031
- i18n-recurrenceEditorOffsetPositionsFourth="kendo.scheduler.recurrenceEditorOffsetPositionsFourth|The text similar to 'Fourth' displayed in the scheduler recurrence editor."
7250
+ i18n-recurrenceEditorOffsetPositionsFourth="kendo.scheduler.recurrenceEditorOffsetPositionsFourth|The text similar to 'Fourth' displayed in the Scheduler recurrence editor."
7032
7251
  recurrenceEditorOffsetPositionsFourth='Fourth'
7033
7252
 
7034
- i18n-recurrenceEditorOffsetPositionsLast="kendo.scheduler.recurrenceEditorOffsetPositionsLast|The text similar to 'Last' displayed in the scheduler recurrence editor."
7253
+ i18n-recurrenceEditorOffsetPositionsLast="kendo.scheduler.recurrenceEditorOffsetPositionsLast|The text similar to 'Last' displayed in the Scheduler recurrence editor."
7035
7254
  recurrenceEditorOffsetPositionsLast='Last'
7036
7255
 
7037
7256
  i18n-recurrenceEditorWeekdaysDay="kendo.scheduler.recurrenceEditorWeekdaysDay|The text similar to 'Day' displayed in the repeat by section of the monthly recurrence pattern."
@@ -7043,43 +7262,43 @@ SchedulerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ver
7043
7262
  i18n-recurrenceEditorWeekdaysWeekendday="kendo.scheduler.recurrenceEditorWeekdaysWeekendday|The text similar to 'Weekend Day' displayed in the repeat by section of the monthly recurrence pattern."
7044
7263
  recurrenceEditorWeekdaysWeekendday='Weekend Day'
7045
7264
 
7046
- i18n-recurrenceEditorEndAfter="kendo.scheduler.recurrenceEditorEndAfter|The text similar to 'After' displayed in the scheduler recurrence editor."
7265
+ i18n-recurrenceEditorEndAfter="kendo.scheduler.recurrenceEditorEndAfter|The text similar to 'After' displayed in the Scheduler recurrence editor."
7047
7266
  recurrenceEditorEndAfter='After'
7048
7267
 
7049
- i18n-recurrenceEditorEndOccurrence="kendo.scheduler.recurrenceEditorEndOccurrence|The text similar to 'occurrence(s)' displayed in the scheduler recurrence editor."
7268
+ i18n-recurrenceEditorEndOccurrence="kendo.scheduler.recurrenceEditorEndOccurrence|The text similar to 'occurrence(s)' displayed in the Scheduler recurrence editor."
7050
7269
  recurrenceEditorEndOccurrence='occurrence(s)'
7051
7270
 
7052
- i18n-recurrenceEditorEndLabel="kendo.scheduler.recurrenceEditorEndLabel|The text similar to 'End' displayed in the scheduler recurrence editor."
7271
+ i18n-recurrenceEditorEndLabel="kendo.scheduler.recurrenceEditorEndLabel|The text similar to 'End' displayed in the Scheduler recurrence editor."
7053
7272
  recurrenceEditorEndLabel='End'
7054
7273
 
7055
- i18n-recurrenceEditorEndNever="kendo.scheduler.recurrenceEditorEndNever|The text similar to 'Never' displayed in the scheduler recurrence editor."
7274
+ i18n-recurrenceEditorEndNever="kendo.scheduler.recurrenceEditorEndNever|The text similar to 'Never' displayed in the Scheduler recurrence editor."
7056
7275
  recurrenceEditorEndNever='Never'
7057
7276
 
7058
- i18n-recurrenceEditorEndOn="kendo.scheduler.recurrenceEditorEndOn|The text similar to 'On' displayed in the scheduler recurrence editor."
7277
+ i18n-recurrenceEditorEndOn="kendo.scheduler.recurrenceEditorEndOn|The text similar to 'On' displayed in the Scheduler recurrence editor."
7059
7278
  recurrenceEditorEndOn='On'
7060
7279
 
7061
- i18n-destroy="kendo.scheduler.destroy|The text of the 'Delete' button displayed in the scheduler remove confirmation dialog."
7280
+ i18n-destroy="kendo.scheduler.destroy|The text of the 'Delete' button displayed in the Scheduler remove confirmation dialog."
7062
7281
  destroy='Delete'
7063
7282
 
7064
- i18n-deleteConfirmation="kendo.scheduler.deleteConfirmation|The text similar to 'Are you sure you want to delete this event?' displayed in scheduler remove confirmation dialog."
7283
+ i18n-deleteConfirmation="kendo.scheduler.deleteConfirmation|The text similar to 'Are you sure you want to delete this event?' displayed in Scheduler remove confirmation dialog."
7065
7284
  deleteConfirmation='Are you sure you want to delete this event?'
7066
7285
 
7067
- 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."
7286
+ 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."
7068
7287
  editRecurringConfirmation='Do you want to edit only this event occurrence or the whole series?'
7069
7288
 
7070
- i18n-editOccurrence="kendo.scheduler.editOccurrence|The text of the 'Edit current occurrence' button displayed in the scheduler recurring confirmation dialog."
7289
+ i18n-editOccurrence="kendo.scheduler.editOccurrence|The text of the 'Edit current occurrence' button displayed in the Scheduler recurring confirmation dialog."
7071
7290
  editOccurrence='Edit current occurrence'
7072
7291
 
7073
- i18n-editSeries="kendo.scheduler.editSeries|The text of the 'Edit the series' button displayed in the scheduler recurring confirmation dialog."
7292
+ i18n-editSeries="kendo.scheduler.editSeries|The text of the 'Edit the series' button displayed in the Scheduler recurring confirmation dialog."
7074
7293
  editSeries='Edit the series'
7075
7294
 
7076
- 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."
7295
+ 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."
7077
7296
  deleteRecurringConfirmation='Do you want to delete only this event occurrence or the whole series?'
7078
7297
 
7079
- i18n-deleteOccurrence="kendo.scheduler.deleteOccurrence|The text of the 'Delete current occurrence' button displayed in the scheduler recurring confirmation dialog."
7298
+ i18n-deleteOccurrence="kendo.scheduler.deleteOccurrence|The text of the 'Delete current occurrence' button displayed in the Scheduler recurring confirmation dialog."
7080
7299
  deleteOccurrence='Delete current occurrence'
7081
7300
 
7082
- i18n-deleteSeries="kendo.scheduler.deleteSeries|The text similar of the 'Delete the series' button displayed in the scheduler recurring confirmation dialog."
7301
+ i18n-deleteSeries="kendo.scheduler.deleteSeries|The text similar of the 'Delete the series' button displayed in the Scheduler recurring confirmation dialog."
7083
7302
  deleteSeries='Delete the series'
7084
7303
 
7085
7304
  i18n-deleteDialogTitle="kendo.scheduler.deleteDialogTitle|The title of the remove confirmation dialog, similar to 'Delete Event'."
@@ -7222,112 +7441,163 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
7222
7441
  i18n-agendaViewTitle="kendo.scheduler.agendaViewTitle|The agenda view title."
7223
7442
  agendaViewTitle="Agenda"
7224
7443
 
7225
- i18n-cancel="kendo.scheduler.cancel|The text similar to 'Cancel' displayed in scheduler."
7444
+ i18n-yearViewTitle="kendo.scheduler.yearViewTitle|The year view title."
7445
+ yearViewTitle="Year"
7446
+
7447
+ i18n-yearViewNoEvents="kendo.scheduler.yearViewNoEvents|The year view no events message."
7448
+ yearViewNoEvents="No events on this date."
7449
+
7450
+ i18n-cancel="kendo.scheduler.cancel|The text similar to 'Cancel' displayed in the Scheduler."
7226
7451
  cancel="Cancel"
7227
7452
 
7228
- i18n-save="kendo.scheduler.save|The text similar to 'Save' displayed in scheduler."
7453
+ i18n-save="kendo.scheduler.save|The text similar to 'Save' displayed in the Scheduler."
7229
7454
  save="Save"
7230
7455
 
7231
- i18n-editorEventTitle="kendo.scheduler.editorEventTitle|The text similar to 'Title' displayed in the scheduler event editor."
7456
+ i18n-editorEventTitle="kendo.scheduler.editorEventTitle|The text similar to 'Title' displayed in the Scheduler event editor."
7232
7457
  editorEventTitle='Title'
7233
7458
 
7234
- i18n-editorEventStart="kendo.scheduler.editorEventStart|The text similar to 'Start' displayed in the scheduler event editor."
7459
+ i18n-editorEventStart="kendo.scheduler.editorEventStart|The text similar to 'Start' displayed in the Scheduler event editor."
7235
7460
  editorEventStart="Start"
7236
7461
 
7237
- i18n-editorEventStartTimeZone="kendo.scheduler.editorEventStartTimeZone|The text similar to 'Start Time Zone' displayed in the scheduler event editor."
7462
+ i18n-editorEventStartTimeZone="kendo.scheduler.editorEventStartTimeZone|The text similar to 'Start Time Zone' displayed in the Scheduler event editor."
7238
7463
  editorEventStartTimeZone="Start Time Zone"
7239
7464
 
7240
- i18n-editorEventEnd="kendo.scheduler.editorEventEnd|The text similar to 'End' displayed in the scheduler event editor."
7465
+ i18n-editorEventEnd="kendo.scheduler.editorEventEnd|The text similar to 'End' displayed in the Scheduler event editor."
7241
7466
  editorEventEnd="End"
7242
7467
 
7243
- i18n-editorEventEndTimeZone="kendo.scheduler.editorEventEndTimeZone|The text similar to 'End Time Zone' displayed in the scheduler event editor."
7468
+ i18n-editorEventEndTimeZone="kendo.scheduler.editorEventEndTimeZone|The text similar to 'End Time Zone' displayed in the Scheduler event editor."
7244
7469
  editorEventEndTimeZone="End Time Zone"
7245
7470
 
7246
- i18n-editorEventAllDay="kendo.scheduler.editorEventAllDay|The text similar to 'All Day event' displayed in the scheduler event editor."
7471
+ i18n-editorEventAllDay="kendo.scheduler.editorEventAllDay|The text similar to 'All Day event' displayed in the Scheduler event editor."
7247
7472
  editorEventAllDay="All Day Event"
7248
7473
 
7249
- i18n-editorEventDescription="kendo.scheduler.editorEventDescription|The text similar to 'Description' displayed in the scheduler event editor."
7474
+ i18n-editorEventDescription="kendo.scheduler.editorEventDescription|The text similar to 'Description' displayed in the Scheduler event editor."
7250
7475
  editorEventDescription="Description"
7251
7476
 
7252
- i18n-editorEventSeparateTimeZones="kendo.scheduler.editorEventSeparateTimeZones|The text similar to 'Use separate Start and End Time Zones' displayed in the scheduler event editor."
7477
+ i18n-editorEventSeparateTimeZones="kendo.scheduler.editorEventSeparateTimeZones|The text similar to 'Use separate Start and End Time Zones' displayed in the Scheduler event editor."
7253
7478
  editorEventSeparateTimeZones="End in different Time Zone"
7254
7479
 
7255
- i18n-editorEventTimeZone="kendo.scheduler.editorEventTimeZone|The text similar to 'Time Zone' displayed in the scheduler event editor."
7480
+ i18n-editorEventTimeZone="kendo.scheduler.editorEventTimeZone|The text similar to 'Time Zone' displayed in the Scheduler event editor."
7256
7481
  editorEventTimeZone='Specify Time Zone'
7257
7482
 
7258
- i18n-editorTitle="kendo.scheduler.editorTitle|The text similar to 'Event' displayed as title of the scheduler event editor."
7483
+ i18n-editorTitle="kendo.scheduler.editorTitle|The text similar to 'Event' displayed as title of the Scheduler event editor."
7259
7484
  editorTitle='Event'
7260
7485
 
7261
- i18n-recurrenceEditorRepeat="kendo.scheduler.recurrenceEditorRepeat|The text similar to 'Repeat' displayed in the scheduler recurrence editor."
7486
+ i18n-editorDateInputsToday="kendo.scheduler.editorDateInputsToday|The Today button text in the popup of the DateTimePickers and DatePickers in the Scheduler event editor."
7487
+ editorDateInputsToday='Today'
7488
+
7489
+ i18n-editorDateInputsToggle="kendo.scheduler.editorDateInputsToggle|The title of the Toggle button of the DateTimePickers and DatePickers in the Scheduler event editor."
7490
+ editorDateInputsToggle='Toggle calendar'
7491
+
7492
+ 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."
7493
+ editorDateInputsParentViewButton='Navigate to parent view'
7494
+
7495
+ 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."
7496
+ editorDateInputsAccept='Now'
7497
+
7498
+ 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."
7499
+ editorDateInputsAcceptLabel='Select now'
7500
+
7501
+ 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."
7502
+ editorDateInputsAccept='Set'
7503
+
7504
+ 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."
7505
+ editorDateInputsAcceptLabel='Set'
7506
+
7507
+ 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."
7508
+ editorDateInputsCancel='Cancel'
7509
+
7510
+ 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."
7511
+ editorDateInputsCancelLabel='Cancel'
7512
+
7513
+ 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."
7514
+ editorDateInputsDateTab='Date'
7515
+
7516
+ 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."
7517
+ editorDateInputsDateTabLabel='Date tab'
7518
+
7519
+ 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."
7520
+ editorDateInputsTimeTab='Time'
7521
+
7522
+ 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."
7523
+ editorDateInputsTimeTabLabel='Time tab'
7524
+
7525
+ i18n-recurrenceEditorNumericIncrement="kendo.scheduler.editorNumericIncrement|The title of the Increment button of the NumericTextBox in the Scheduler recurrence editor."
7526
+ recurrenceEditorNumericIncrement='Increase value'
7527
+
7528
+ i18n-recurrenceEditorNumericDecrement="kendo.scheduler.editorNumericDecrement|The title of the Decrement button of the NumericTextBox in the Scheduler recurrence editor."
7529
+ recurrenceEditorNumericDecrement='Decrease value'
7530
+
7531
+ i18n-recurrenceEditorRepeat="kendo.scheduler.recurrenceEditorRepeat|The text similar to 'Repeat' displayed in the Scheduler recurrence editor."
7262
7532
  recurrenceEditorRepeat='Repeat'
7263
7533
 
7264
- i18n-recurrenceEditorDailyInterval="kendo.scheduler.recurrenceEditorDailyInterval|The text similar to 'day(s)' displayed in the scheduler recurrence editor."
7534
+ i18n-recurrenceEditorDailyInterval="kendo.scheduler.recurrenceEditorDailyInterval|The text similar to 'day(s)' displayed in the Scheduler recurrence editor."
7265
7535
  recurrenceEditorDailyInterval='day(s)'
7266
7536
 
7267
- i18n-recurrenceEditorDailyRepeatEvery="kendo.scheduler.recurrenceEditorDailyRepeatEvery|The text similar to 'Repeat every' displayed in the scheduler recurrence editor."
7537
+ i18n-recurrenceEditorDailyRepeatEvery="kendo.scheduler.recurrenceEditorDailyRepeatEvery|The text similar to 'Repeat every' displayed in the Scheduler recurrence editor."
7268
7538
  recurrenceEditorDailyRepeatEvery='Repeat every'
7269
7539
 
7270
- i18n-recurrenceEditorWeeklyInterval="kendo.scheduler.recurrenceEditorWeeklyInterval|The text similar to 'week(s)' displayed in the scheduler recurrence editor."
7540
+ i18n-recurrenceEditorWeeklyInterval="kendo.scheduler.recurrenceEditorWeeklyInterval|The text similar to 'week(s)' displayed in the Scheduler recurrence editor."
7271
7541
  recurrenceEditorWeeklyInterval='week(s)'
7272
7542
 
7273
- i18n-recurrenceEditorWeeklyRepeatEvery="kendo.scheduler.recurrenceEditorWeeklyRepeatEvery|The text similar to 'Repeat every' displayed in the scheduler recurrence editor."
7543
+ i18n-recurrenceEditorWeeklyRepeatEvery="kendo.scheduler.recurrenceEditorWeeklyRepeatEvery|The text similar to 'Repeat every' displayed in the Scheduler recurrence editor."
7274
7544
  recurrenceEditorWeeklyRepeatEvery='Repeat every'
7275
7545
 
7276
- i18n-recurrenceEditorWeeklyRepeatOn="kendo.scheduler.recurrenceEditorWeeklyRepeatOn|The text similar to 'Repeat on' displayed in the scheduler recurrence editor."
7546
+ i18n-recurrenceEditorWeeklyRepeatOn="kendo.scheduler.recurrenceEditorWeeklyRepeatOn|The text similar to 'Repeat on' displayed in the Scheduler recurrence editor."
7277
7547
  recurrenceEditorWeeklyRepeatOn='Repeat on'
7278
7548
 
7279
- i18n-recurrenceEditorMonthlyDay="kendo.scheduler.recurrenceEditorMonthlyDay|The text similar to 'Day' displayed in the scheduler recurrence editor."
7549
+ i18n-recurrenceEditorMonthlyDay="kendo.scheduler.recurrenceEditorMonthlyDay|The text similar to 'Day' displayed in the Scheduler recurrence editor."
7280
7550
  recurrenceEditorMonthlyDay='Day'
7281
7551
 
7282
- i18n-recurrenceEditorMonthlyInterval="kendo.scheduler.recurrenceEditorMonthlyInterval|The text similar to 'month(s)' displayed in the scheduler recurrence editor."
7552
+ i18n-recurrenceEditorMonthlyInterval="kendo.scheduler.recurrenceEditorMonthlyInterval|The text similar to 'month(s)' displayed in the Scheduler recurrence editor."
7283
7553
  recurrenceEditorMonthlyInterval='month(s)'
7284
7554
 
7285
- i18n-recurrenceEditorMonthlyRepeatEvery="kendo.scheduler.recurrenceEditorMonthlyRepeatEvery|The text similar to 'Repeat every' displayed in the scheduler recurrence editor."
7555
+ i18n-recurrenceEditorMonthlyRepeatEvery="kendo.scheduler.recurrenceEditorMonthlyRepeatEvery|The text similar to 'Repeat every' displayed in the Scheduler recurrence editor."
7286
7556
  recurrenceEditorMonthlyRepeatEvery='Repeat every'
7287
7557
 
7288
- i18n-recurrenceEditorMonthlyRepeatOn="kendo.scheduler.recurrenceEditorMonthlyRepeatOn|The text similar to 'Repeat on' displayed in the scheduler recurrence editor."
7558
+ i18n-recurrenceEditorMonthlyRepeatOn="kendo.scheduler.recurrenceEditorMonthlyRepeatOn|The text similar to 'Repeat on' displayed in the Scheduler recurrence editor."
7289
7559
  recurrenceEditorMonthlyRepeatOn='Repeat on'
7290
7560
 
7291
- i18n-recurrenceEditorYearlyOf="kendo.scheduler.recurrenceEditorYearlyOf|The text similar to 'of' displayed in the scheduler recurrence editor."
7561
+ i18n-recurrenceEditorYearlyOf="kendo.scheduler.recurrenceEditorYearlyOf|The text similar to 'of' displayed in the Scheduler recurrence editor."
7292
7562
  recurrenceEditorYearlyOf='of'
7293
7563
 
7294
- i18n-recurrenceEditorYearlyRepeatEvery="kendo.scheduler.recurrenceEditorYearlyRepeatEvery|The text similar to 'Repeat every' displayed in the scheduler recurrence editor."
7564
+ i18n-recurrenceEditorYearlyRepeatEvery="kendo.scheduler.recurrenceEditorYearlyRepeatEvery|The text similar to 'Repeat every' displayed in the Scheduler recurrence editor."
7295
7565
  recurrenceEditorYearlyRepeatEvery='Repeat every'
7296
7566
 
7297
- i18n-recurrenceEditorYearlyRepeatOn="kendo.scheduler.recurrenceEditorYearlyRepeatOn|The text similar to 'Repeat on' displayed in the scheduler recurrence editor."
7567
+ i18n-recurrenceEditorYearlyRepeatOn="kendo.scheduler.recurrenceEditorYearlyRepeatOn|The text similar to 'Repeat on' displayed in the Scheduler recurrence editor."
7298
7568
  recurrenceEditorYearlyRepeatOn='Repeat on'
7299
7569
 
7300
- i18n-recurrenceEditorYearlyInterval="kendo.scheduler.recurrenceEditorYearlyInterval|The text similar to 'year(s)' displayed in the scheduler recurrence editor."
7570
+ i18n-recurrenceEditorYearlyInterval="kendo.scheduler.recurrenceEditorYearlyInterval|The text similar to 'year(s)' displayed in the Scheduler recurrence editor."
7301
7571
  recurrenceEditorYearlyInterval='year(s)'
7302
7572
 
7303
- i18n-recurrenceEditorFrequenciesDaily="kendo.scheduler.recurrenceEditorFrequenciesDaily|The text similar to 'Daily' displayed in the scheduler recurrence editor."
7573
+ i18n-recurrenceEditorFrequenciesDaily="kendo.scheduler.recurrenceEditorFrequenciesDaily|The text similar to 'Daily' displayed in the Scheduler recurrence editor."
7304
7574
  recurrenceEditorFrequenciesDaily='Daily'
7305
7575
 
7306
- i18n-recurrenceEditorFrequenciesMonthly="kendo.scheduler.recurrenceEditorFrequenciesMonthly|The text similar to 'Monthly' displayed in the scheduler recurrence editor."
7576
+ i18n-recurrenceEditorFrequenciesMonthly="kendo.scheduler.recurrenceEditorFrequenciesMonthly|The text similar to 'Monthly' displayed in the Scheduler recurrence editor."
7307
7577
  recurrenceEditorFrequenciesMonthly='Monthly'
7308
7578
 
7309
- i18n-recurrenceEditorFrequenciesNever="kendo.scheduler.recurrenceEditorFrequenciesNever|The text similar to 'Never' displayed in the scheduler recurrence editor."
7579
+ i18n-recurrenceEditorFrequenciesNever="kendo.scheduler.recurrenceEditorFrequenciesNever|The text similar to 'Never' displayed in the Scheduler recurrence editor."
7310
7580
  recurrenceEditorFrequenciesNever='Never'
7311
7581
 
7312
- i18n-recurrenceEditorFrequenciesWeekly="kendo.scheduler.recurrenceEditorFrequenciesWeekly|The text similar to 'Weekly' displayed in the scheduler recurrence editor."
7582
+ i18n-recurrenceEditorFrequenciesWeekly="kendo.scheduler.recurrenceEditorFrequenciesWeekly|The text similar to 'Weekly' displayed in the Scheduler recurrence editor."
7313
7583
  recurrenceEditorFrequenciesWeekly='Weekly'
7314
7584
 
7315
- i18n-recurrenceEditorFrequenciesYearly="kendo.scheduler.recurrenceEditorFrequenciesYearly|The text similar to 'Yearly' displayed in the scheduler recurrence editor."
7585
+ i18n-recurrenceEditorFrequenciesYearly="kendo.scheduler.recurrenceEditorFrequenciesYearly|The text similar to 'Yearly' displayed in the Scheduler recurrence editor."
7316
7586
  recurrenceEditorFrequenciesYearly='Yearly'
7317
7587
 
7318
- i18n-recurrenceEditorOffsetPositionsFirst="kendo.scheduler.recurrenceEditorOffsetPositionsFirst|The text similar to 'First' displayed in the scheduler recurrence editor."
7588
+ i18n-recurrenceEditorOffsetPositionsFirst="kendo.scheduler.recurrenceEditorOffsetPositionsFirst|The text similar to 'First' displayed in the Scheduler recurrence editor."
7319
7589
  recurrenceEditorOffsetPositionsFirst='First'
7320
7590
 
7321
- i18n-recurrenceEditorOffsetPositionsSecond="kendo.scheduler.recurrenceEditorOffsetPositionsSecond|The text similar to 'Second' displayed in the scheduler recurrence editor."
7591
+ i18n-recurrenceEditorOffsetPositionsSecond="kendo.scheduler.recurrenceEditorOffsetPositionsSecond|The text similar to 'Second' displayed in the Scheduler recurrence editor."
7322
7592
  recurrenceEditorOffsetPositionsSecond='Second'
7323
7593
 
7324
- i18n-recurrenceEditorOffsetPositionsThird="kendo.scheduler.recurrenceEditorOffsetPositionsThird|The text similar to 'Third' displayed in the scheduler recurrence editor."
7594
+ i18n-recurrenceEditorOffsetPositionsThird="kendo.scheduler.recurrenceEditorOffsetPositionsThird|The text similar to 'Third' displayed in the Scheduler recurrence editor."
7325
7595
  recurrenceEditorOffsetPositionsThird='Third'
7326
7596
 
7327
- i18n-recurrenceEditorOffsetPositionsFourth="kendo.scheduler.recurrenceEditorOffsetPositionsFourth|The text similar to 'Fourth' displayed in the scheduler recurrence editor."
7597
+ i18n-recurrenceEditorOffsetPositionsFourth="kendo.scheduler.recurrenceEditorOffsetPositionsFourth|The text similar to 'Fourth' displayed in the Scheduler recurrence editor."
7328
7598
  recurrenceEditorOffsetPositionsFourth='Fourth'
7329
7599
 
7330
- i18n-recurrenceEditorOffsetPositionsLast="kendo.scheduler.recurrenceEditorOffsetPositionsLast|The text similar to 'Last' displayed in the scheduler recurrence editor."
7600
+ i18n-recurrenceEditorOffsetPositionsLast="kendo.scheduler.recurrenceEditorOffsetPositionsLast|The text similar to 'Last' displayed in the Scheduler recurrence editor."
7331
7601
  recurrenceEditorOffsetPositionsLast='Last'
7332
7602
 
7333
7603
  i18n-recurrenceEditorWeekdaysDay="kendo.scheduler.recurrenceEditorWeekdaysDay|The text similar to 'Day' displayed in the repeat by section of the monthly recurrence pattern."
@@ -7339,43 +7609,43 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
7339
7609
  i18n-recurrenceEditorWeekdaysWeekendday="kendo.scheduler.recurrenceEditorWeekdaysWeekendday|The text similar to 'Weekend Day' displayed in the repeat by section of the monthly recurrence pattern."
7340
7610
  recurrenceEditorWeekdaysWeekendday='Weekend Day'
7341
7611
 
7342
- i18n-recurrenceEditorEndAfter="kendo.scheduler.recurrenceEditorEndAfter|The text similar to 'After' displayed in the scheduler recurrence editor."
7612
+ i18n-recurrenceEditorEndAfter="kendo.scheduler.recurrenceEditorEndAfter|The text similar to 'After' displayed in the Scheduler recurrence editor."
7343
7613
  recurrenceEditorEndAfter='After'
7344
7614
 
7345
- i18n-recurrenceEditorEndOccurrence="kendo.scheduler.recurrenceEditorEndOccurrence|The text similar to 'occurrence(s)' displayed in the scheduler recurrence editor."
7615
+ i18n-recurrenceEditorEndOccurrence="kendo.scheduler.recurrenceEditorEndOccurrence|The text similar to 'occurrence(s)' displayed in the Scheduler recurrence editor."
7346
7616
  recurrenceEditorEndOccurrence='occurrence(s)'
7347
7617
 
7348
- i18n-recurrenceEditorEndLabel="kendo.scheduler.recurrenceEditorEndLabel|The text similar to 'End' displayed in the scheduler recurrence editor."
7618
+ i18n-recurrenceEditorEndLabel="kendo.scheduler.recurrenceEditorEndLabel|The text similar to 'End' displayed in the Scheduler recurrence editor."
7349
7619
  recurrenceEditorEndLabel='End'
7350
7620
 
7351
- i18n-recurrenceEditorEndNever="kendo.scheduler.recurrenceEditorEndNever|The text similar to 'Never' displayed in the scheduler recurrence editor."
7621
+ i18n-recurrenceEditorEndNever="kendo.scheduler.recurrenceEditorEndNever|The text similar to 'Never' displayed in the Scheduler recurrence editor."
7352
7622
  recurrenceEditorEndNever='Never'
7353
7623
 
7354
- i18n-recurrenceEditorEndOn="kendo.scheduler.recurrenceEditorEndOn|The text similar to 'On' displayed in the scheduler recurrence editor."
7624
+ i18n-recurrenceEditorEndOn="kendo.scheduler.recurrenceEditorEndOn|The text similar to 'On' displayed in the Scheduler recurrence editor."
7355
7625
  recurrenceEditorEndOn='On'
7356
7626
 
7357
- i18n-destroy="kendo.scheduler.destroy|The text of the 'Delete' button displayed in the scheduler remove confirmation dialog."
7627
+ i18n-destroy="kendo.scheduler.destroy|The text of the 'Delete' button displayed in the Scheduler remove confirmation dialog."
7358
7628
  destroy='Delete'
7359
7629
 
7360
- i18n-deleteConfirmation="kendo.scheduler.deleteConfirmation|The text similar to 'Are you sure you want to delete this event?' displayed in scheduler remove confirmation dialog."
7630
+ i18n-deleteConfirmation="kendo.scheduler.deleteConfirmation|The text similar to 'Are you sure you want to delete this event?' displayed in Scheduler remove confirmation dialog."
7361
7631
  deleteConfirmation='Are you sure you want to delete this event?'
7362
7632
 
7363
- 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."
7633
+ 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."
7364
7634
  editRecurringConfirmation='Do you want to edit only this event occurrence or the whole series?'
7365
7635
 
7366
- i18n-editOccurrence="kendo.scheduler.editOccurrence|The text of the 'Edit current occurrence' button displayed in the scheduler recurring confirmation dialog."
7636
+ i18n-editOccurrence="kendo.scheduler.editOccurrence|The text of the 'Edit current occurrence' button displayed in the Scheduler recurring confirmation dialog."
7367
7637
  editOccurrence='Edit current occurrence'
7368
7638
 
7369
- i18n-editSeries="kendo.scheduler.editSeries|The text of the 'Edit the series' button displayed in the scheduler recurring confirmation dialog."
7639
+ i18n-editSeries="kendo.scheduler.editSeries|The text of the 'Edit the series' button displayed in the Scheduler recurring confirmation dialog."
7370
7640
  editSeries='Edit the series'
7371
7641
 
7372
- 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."
7642
+ 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."
7373
7643
  deleteRecurringConfirmation='Do you want to delete only this event occurrence or the whole series?'
7374
7644
 
7375
- i18n-deleteOccurrence="kendo.scheduler.deleteOccurrence|The text of the 'Delete current occurrence' button displayed in the scheduler recurring confirmation dialog."
7645
+ i18n-deleteOccurrence="kendo.scheduler.deleteOccurrence|The text of the 'Delete current occurrence' button displayed in the Scheduler recurring confirmation dialog."
7376
7646
  deleteOccurrence='Delete current occurrence'
7377
7647
 
7378
- i18n-deleteSeries="kendo.scheduler.deleteSeries|The text similar of the 'Delete the series' button displayed in the scheduler recurring confirmation dialog."
7648
+ i18n-deleteSeries="kendo.scheduler.deleteSeries|The text similar of the 'Delete the series' button displayed in the Scheduler recurring confirmation dialog."
7379
7649
  deleteSeries='Delete the series'
7380
7650
 
7381
7651
  i18n-deleteDialogTitle="kendo.scheduler.deleteDialogTitle|The title of the remove confirmation dialog, similar to 'Delete Event'."
@@ -7778,7 +8048,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
7778
8048
  /**
7779
8049
  * @hidden
7780
8050
  */
7781
- const createTasks$2 = (periodStart, periodEnd, items) => {
8051
+ const createTasks$3 = (periodStart, periodEnd, items) => {
7782
8052
  const tasks = [];
7783
8053
  const utcStart = toUTCDate(periodStart);
7784
8054
  const utcEnd = toUTCDate(periodEnd);
@@ -9838,7 +10108,7 @@ const last = (arr) => arr[arr.length - 1];
9838
10108
  /**
9839
10109
  * @hidden
9840
10110
  */
9841
- const createTasks$1 = (periodStart, periodEnd, items, ranges) => {
10111
+ const createTasks$2 = (periodStart, periodEnd, items, ranges) => {
9842
10112
  const tasks = [];
9843
10113
  const utcStart = toUTCDate(periodStart);
9844
10114
  const utcEnd = toUTCDate(periodEnd);
@@ -11359,7 +11629,7 @@ class MonthViewRendererComponent extends BaseView {
11359
11629
  }
11360
11630
  createTasks(items, dateRange) {
11361
11631
  this.weeks = this.createDaySlots(dateRange);
11362
- return createTasks$1(dateRange.start, dateRange.end, items, this.weeks);
11632
+ return createTasks$2(dateRange.start, dateRange.end, items, this.weeks);
11363
11633
  }
11364
11634
  onTasksChange() {
11365
11635
  updateTaskData(this.tasks);
@@ -12971,7 +13241,7 @@ const isMultiDay = ({ start, end }) => {
12971
13241
  };
12972
13242
  //check start and times or update day ranges to have them
12973
13243
  /** @hidden */
12974
- const createTasks = (periodStart, periodEnd, items, ranges) => {
13244
+ const createTasks$1 = (periodStart, periodEnd, items, ranges) => {
12975
13245
  const tasks = [];
12976
13246
  const utcStart = toUTCDate(periodStart);
12977
13247
  const utcEnd = toUTCDate(periodEnd);
@@ -13765,7 +14035,7 @@ class MultiDayViewRendererComponent extends DayTimeViewComponent {
13765
14035
  start: toUTCTime(daySlot.start, startTimeSlot.start),
13766
14036
  end: nextDateEnd ? toUTCDate(daySlot.end) : toUTCTime(daySlot.start, endTimeSlot)
13767
14037
  }));
13768
- return createTasks(dateRange.start, dateRange.end, items, ranges);
14038
+ return createTasks$1(dateRange.start, dateRange.end, items, ranges);
13769
14039
  }
13770
14040
  onTasksChange() {
13771
14041
  this.items.next(this.tasks.filter(task => !task.isAllDay));
@@ -15190,7 +15460,7 @@ class TimelineMultiDayViewComponent extends DayTimeViewComponent {
15190
15460
  return result;
15191
15461
  }
15192
15462
  createTasks(items, dateRange) {
15193
- return createTasks$2(dateRange.start, dateRange.end, items);
15463
+ return createTasks$3(dateRange.start, dateRange.end, items);
15194
15464
  }
15195
15465
  onTasksChange() {
15196
15466
  this.items.next(this.tasks);
@@ -15613,11 +15883,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
15613
15883
  class TimelineViewComponent extends TimelineBase {
15614
15884
  constructor(localization, changeDetector, viewContext, viewState) {
15615
15885
  super(localization, changeDetector, viewContext, viewState);
15616
- /**
15617
- * Specifies the number of days that the view will render.
15618
- * @default 1
15619
- */
15620
- this.numberOfDays = 1;
15886
+ this._numberOfDays = 1;
15621
15887
  /**
15622
15888
  * The invariant name for this view.
15623
15889
  * @default 'timeline'
@@ -15662,6 +15928,18 @@ class TimelineViewComponent extends TimelineBase {
15662
15928
  }
15663
15929
  return this.numberOfDays && this.numberOfDays > 1 ? '{0:d} - {1:d}' : '{0:d}';
15664
15930
  }
15931
+ /**
15932
+ * Specifies the number of days that the view will render.
15933
+ * > Normalized to `1` if the provided value is <= 0.
15934
+ * @default 1
15935
+ */
15936
+ set numberOfDays(days) {
15937
+ this._numberOfDays = days > 0 ? days : 1;
15938
+ }
15939
+ ;
15940
+ get numberOfDays() {
15941
+ return this._numberOfDays;
15942
+ }
15665
15943
  }
15666
15944
  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 });
15667
15945
  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: [{
@@ -15777,11 +16055,7 @@ class TimelineWeekViewComponent extends TimelineBase {
15777
16055
  * @default '{0:d} - {1:d}'
15778
16056
  */
15779
16057
  this.selectedShortDateFormat = '{0:d} - {1:d}';
15780
- /**
15781
- * Specifies the number of weeks that the view will render.
15782
- * @default 1
15783
- */
15784
- this.numberOfWeeks = 1;
16058
+ this._numberOfWeeks = 1;
15785
16059
  /**
15786
16060
  * The invariant name for this view.
15787
16061
  * @default 'timelineWeek'
@@ -15800,6 +16074,17 @@ class TimelineWeekViewComponent extends TimelineBase {
15800
16074
  get title() {
15801
16075
  return this.localization.get('timelineWeekViewTitle');
15802
16076
  }
16077
+ /**
16078
+ * Specifies the number of weeks that the view will render.
16079
+ * @default 1
16080
+ */
16081
+ set numberOfWeeks(weeks) {
16082
+ this._numberOfWeeks = weeks > 0 ? weeks : 1;
16083
+ }
16084
+ ;
16085
+ get numberOfWeeks() {
16086
+ return this._numberOfWeeks;
16087
+ }
15803
16088
  }
15804
16089
  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 });
15805
16090
  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: [{
@@ -15903,11 +16188,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
15903
16188
  class TimelineMonthViewComponent extends TimelineBase {
15904
16189
  constructor(localization, changeDetector, viewContext, viewState) {
15905
16190
  super(localization, changeDetector, viewContext, viewState);
15906
- /**
15907
- * Specifies the number of months that the view will render.
15908
- * @default 1
15909
- */
15910
- this.numberOfMonths = 1;
16191
+ this._numberOfMonths = 1;
15911
16192
  /**
15912
16193
  * The invariant name for this view.
15913
16194
  * @default 'timelineMonth'
@@ -15970,6 +16251,18 @@ class TimelineMonthViewComponent extends TimelineBase {
15970
16251
  }
15971
16252
  return this.numberOfMonths && this.numberOfMonths > 1 ? '{0:y} - {1:y}' : '{0:y}';
15972
16253
  }
16254
+ /**
16255
+ * Specifies the number of months that the view will render.
16256
+ * > Normalized to `1` if the provided value is <= 0.
16257
+ * @default 1
16258
+ */
16259
+ set numberOfMonths(months) {
16260
+ this._numberOfMonths = months > 0 ? months : 1;
16261
+ }
16262
+ ;
16263
+ get numberOfMonths() {
16264
+ return this._numberOfMonths;
16265
+ }
15973
16266
  }
15974
16267
  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 });
15975
16268
  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: [{
@@ -16616,6 +16909,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
16616
16909
  }], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
16617
16910
 
16618
16911
  const isContentWrapper = element => hasClasses(element, 'k-scheduler-content');
16912
+ const CALENDAR_TAG = 'KENDO-CALENDAR-HORIZONTAL';
16619
16913
  /**
16620
16914
  * @hidden
16621
16915
  */
@@ -16708,6 +17002,10 @@ class ShortcutsDirective {
16708
17002
  }, {
16709
17003
  match: e => (e.keyCode === Keys.ArrowUp || e.keyCode === Keys.ArrowLeft) && noModifiers(e) && !isContentWrapper(e.target),
16710
17004
  action: e => {
17005
+ //use the MultiViewCalendar navigation for Year View
17006
+ if (e.target.tagName === CALENDAR_TAG) {
17007
+ return;
17008
+ }
16711
17009
  const prevented = this.scheduler.onNavigationAction({ type: 'focus-prev' });
16712
17010
  if (!prevented) {
16713
17011
  const item = this.focusService.activeItem;
@@ -16721,6 +17019,10 @@ class ShortcutsDirective {
16721
17019
  }, {
16722
17020
  match: e => (e.keyCode === Keys.ArrowDown || e.keyCode === Keys.ArrowRight) && noModifiers(e) && !isContentWrapper(e.target),
16723
17021
  action: e => {
17022
+ //use the MultiViewCalendar navigation for Year View
17023
+ if (e.target.tagName === CALENDAR_TAG) {
17024
+ return;
17025
+ }
16724
17026
  const prevented = this.scheduler.onNavigationAction({ type: 'focus-next' });
16725
17027
  if (!prevented) {
16726
17028
  const isInToolbar = this.focusService.activeItem.containerType === 'toolbar';
@@ -16882,6 +17184,579 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
16882
17184
  type: Output
16883
17185
  }] } });
16884
17186
 
17187
+ /**
17188
+ * @hidden
17189
+ */
17190
+ const createTasks = (periodStart, periodEnd, items, ranges) => {
17191
+ const tasks = [];
17192
+ const utcStart = toUTCDateTime(periodStart);
17193
+ const utcEnd = toUTCDateTime(periodEnd);
17194
+ for (let index = 0; index < items.length; index++) {
17195
+ const item = items[index];
17196
+ const data = {};
17197
+ const startTime = item.start.toUTCDate();
17198
+ const end = item.end;
17199
+ const endTime = (item.end.getTime() !== end.getTime() ? end.addDays(1) : end).toUTCDate();
17200
+ if (intersects(startTime, endTime, utcStart, utcEnd)) {
17201
+ for (let rangeIdx = 0; rangeIdx < ranges.length; rangeIdx++) {
17202
+ const range = ranges[rangeIdx];
17203
+ const rangeStart = toUTCDate(range);
17204
+ const rangeEnd = toUTCDate(addDays(range, 1));
17205
+ if (intersects(startTime, endTime, rangeStart, rangeEnd)) {
17206
+ const task = {
17207
+ index,
17208
+ startTime: startTime > rangeStart ? startTime : rangeStart,
17209
+ endTime: endTime < rangeEnd ? endTime : rangeEnd,
17210
+ start: item.start,
17211
+ end: item.end,
17212
+ event: item.event,
17213
+ isAllDay: item.event.isAllDay,
17214
+ rangeIndex: rangeIdx,
17215
+ data: data
17216
+ };
17217
+ task.head = endTime > rangeEnd && startTime > rangeStart;
17218
+ task.tail = startTime < rangeStart && endTime < rangeEnd;
17219
+ task.mid = endTime > rangeEnd && startTime < rangeStart;
17220
+ task.isMultiDay = task.head || task.mid || task.tail;
17221
+ tasks.push(task);
17222
+ }
17223
+ }
17224
+ }
17225
+ }
17226
+ return sortTasksByTime(tasks);
17227
+ };
17228
+ /**
17229
+ * @hidden
17230
+ */
17231
+ const noop = (_) => { };
17232
+ /**
17233
+ * @hidden
17234
+ */
17235
+ const yearEnd = (year) => new Date(year, 11, 31, 23, 59, 59, 999);
17236
+ /**
17237
+ * @hidden
17238
+ */
17239
+ const yearStart = (year) => new Date(year, 0, 1, 0, 0, 0, 0);
17240
+
17241
+ const today = new Date(Date.now());
17242
+ const getDateAttribute = (element) => element?.querySelector('span>span[date]')?.getAttribute('date');
17243
+ /**
17244
+ * @hidden
17245
+ */
17246
+ class YearViewInternalComponent extends BaseView {
17247
+ constructor(localization, focusService, intl, viewContext, viewState, zone, renderer, pdfService, element, slotService, scrollBarWidthService, changeDetector, localeId) {
17248
+ super(viewContext, viewState, intl, slotService, zone, renderer, element, pdfService, localization, changeDetector, scrollBarWidthService);
17249
+ this.localization = localization;
17250
+ this.focusService = focusService;
17251
+ this.intl = intl;
17252
+ this.localeId = localeId;
17253
+ this.caretAltLeftIcon = caretAltLeftIcon;
17254
+ this.caretAltRightIcon = caretAltRightIcon;
17255
+ this.eventsPerSelectedDay = [];
17256
+ this.days = [];
17257
+ this.tds = [];
17258
+ this.isTooltipClicked = false;
17259
+ this.slotByIndex = (slotIndex, args) => noop(slotIndex);
17260
+ this.dragHintSize = (startSlot, endSlot) => noop(startSlot);
17261
+ this.dragRanges = (slot) => noop(slot);
17262
+ this.slotByPosition = (x, y, container) => noop(x);
17263
+ this.cachedTds = [];
17264
+ }
17265
+ get arrowIcons() {
17266
+ return !this.localization.rtl
17267
+ ? ['caret-alt-left', 'caret-alt-right']
17268
+ : ['caret-alt-right', 'caret-alt-left'];
17269
+ }
17270
+ get arrowSVGIcons() {
17271
+ return !this.localization.rtl
17272
+ ? [this.caretAltLeftIcon, this.caretAltRightIcon]
17273
+ : [this.caretAltRightIcon, this.caretAltLeftIcon];
17274
+ }
17275
+ ngAfterViewInit() {
17276
+ this.updateTds();
17277
+ super.ngAfterViewInit();
17278
+ }
17279
+ getSlotClass(date) {
17280
+ if (this.slotClass) {
17281
+ return this.slotClass({
17282
+ start: date,
17283
+ end: addDays(date, 1),
17284
+ events: this.eventsPerDay(date),
17285
+ });
17286
+ }
17287
+ }
17288
+ getEventClasses(item, resources, isAllDay) {
17289
+ if (this.eventClass) {
17290
+ return this.eventClass({
17291
+ event: item.event,
17292
+ resources,
17293
+ isAllDay,
17294
+ });
17295
+ }
17296
+ }
17297
+ onBlur() {
17298
+ if (!this.isTooltipClicked) {
17299
+ this.tooltip.hide();
17300
+ }
17301
+ this.isTooltipClicked = false;
17302
+ }
17303
+ getDate(element) {
17304
+ return new Date(getDateAttribute(element.nativeElement));
17305
+ }
17306
+ eventTitle(event) {
17307
+ const startTime = toLocalDate(event.startTime);
17308
+ const endTime = toLocalDate(event.endTime);
17309
+ const time = formatEventTime(startTime, endTime, event.isAllDay, this.localeId);
17310
+ return `${time}, ${event.event.title}`;
17311
+ }
17312
+ onClick(event) {
17313
+ if (event.target.tagName === 'SPAN') {
17314
+ const clickedDate = getDateAttribute(event.target.closest('td.k-calendar-td'));
17315
+ if (clickedDate === getDateAttribute(this.currentTd)) {
17316
+ this.tooltip.show(this.currentTd);
17317
+ }
17318
+ }
17319
+ else {
17320
+ this.tooltip.hide();
17321
+ }
17322
+ }
17323
+ onMouseDown() {
17324
+ this.isTooltipClicked = true;
17325
+ }
17326
+ onKeydown(event) {
17327
+ if (event.key === 'Backspace' || event.key === 'Delete') {
17328
+ this.tooltip.hide();
17329
+ }
17330
+ if (event.key === 'Enter' && !this.tooltip.popupRef) {
17331
+ this.tooltip.show(this.currentTd);
17332
+ return;
17333
+ }
17334
+ if (event.key === 'Enter' && this.tooltip.popupRef && (getDateAttribute(this.currentTd) === this.calendar.focusedDate.toString())) {
17335
+ this.navigateToDay(new Date(getDateAttribute(this.currentTd)));
17336
+ }
17337
+ }
17338
+ navigateToDay(date) {
17339
+ this.tooltip.hide();
17340
+ this.zone.run(() => {
17341
+ this.viewState.navigateTo({ viewName: 'day', date: new Date(date) });
17342
+ });
17343
+ }
17344
+ eventsPerDay(date) {
17345
+ return this.tasksPerDay(date)?.map((task) => task.event) || [];
17346
+ }
17347
+ tasksPerDay(date) {
17348
+ if (this.resources?.length > 0) {
17349
+ return this.tasks?.filter((event) => event.resources.length > 0 &&
17350
+ event.startTime.getUTCDate() === date.getDate() &&
17351
+ event.startTime.getUTCMonth() === date.getMonth());
17352
+ }
17353
+ else {
17354
+ return this.tasks?.filter((event) => event.startTime.getUTCDate() === date.getDate() && event.startTime.getUTCMonth() === date.getMonth());
17355
+ }
17356
+ }
17357
+ onValueChange(date) {
17358
+ this.eventsPerSelectedDay = this.tasksPerDay(date);
17359
+ this.currentTd = this.tds.find((td) => getDateAttribute(td) === date.toString());
17360
+ if (this.tooltip.popupRef) {
17361
+ this.tooltip.hide();
17362
+ }
17363
+ }
17364
+ hasEvent(date) {
17365
+ return this.tasksPerDay(date).length > 0;
17366
+ }
17367
+ createPDFElement() {
17368
+ const element = this.element.nativeElement.cloneNode(true);
17369
+ element.style.width = `${this.element.nativeElement.offsetWidth}px`;
17370
+ element.querySelector('.k-scheduler-layout').style.height = 'auto';
17371
+ this.pdfService.elementReady.emit({
17372
+ element: element,
17373
+ });
17374
+ }
17375
+ onSelectDate(date) {
17376
+ const year = date.getFullYear();
17377
+ this.focusedDate = new Date(year, today.getMonth(), today.getDate());
17378
+ const start = yearStart(year);
17379
+ this.selectedDate = start;
17380
+ const dateRange = this.dateRange(date);
17381
+ this.viewState.notifyDateRange(dateRange);
17382
+ this.days = this.createDaySlots(dateRange);
17383
+ if (this.calendar) {
17384
+ this.calendar.min = start;
17385
+ this.calendar.max = yearEnd(start.getFullYear());
17386
+ this.updateTds();
17387
+ }
17388
+ }
17389
+ onAction(e) {
17390
+ const now = this.selectedDate;
17391
+ if (e.type === 'next' || e.type === 'prev') {
17392
+ const offset = e.type === 'next' ? 1 : -1;
17393
+ const next = addYears(now, offset);
17394
+ this.viewState.notifyNextDate(next);
17395
+ this.calendar.min = next;
17396
+ this.calendar.max = yearEnd(next.getFullYear());
17397
+ this.focusedDate = new Date(next.getFullYear(), today.getMonth(), today.getDate());
17398
+ }
17399
+ }
17400
+ createTasks(items, dateRange) {
17401
+ this.days = this.createDaySlots(dateRange);
17402
+ return createTasks(dateRange.start, dateRange.end, items, this.days);
17403
+ }
17404
+ reflow() {
17405
+ this.updateContentHeight();
17406
+ const content = this.content.nativeElement;
17407
+ if (this.contentHeight === 'auto') {
17408
+ // bigger size changes cause the table to overflow the container and in horizontal scrollbars
17409
+ // this changes the table and slots size during rendering before the browser re-adjusts the 100% table width
17410
+ content.style.overflow = 'visible';
17411
+ }
17412
+ if (this.contentHeight === 'auto') {
17413
+ content.style.overflow = '';
17414
+ }
17415
+ }
17416
+ dateRange(date = this.selectedDate) {
17417
+ return this.dateRangeFn(date);
17418
+ }
17419
+ onTasksChange() {
17420
+ this.items.next(this.tasks);
17421
+ }
17422
+ createDaySlots({ start }) {
17423
+ const days = [];
17424
+ const monthsPerYear = 12;
17425
+ let date = start;
17426
+ for (let idx = 0; idx < monthsPerYear; idx++) {
17427
+ const monthTotalDays = this.getLastDayOfMonth(date.getFullYear(), date.getMonth());
17428
+ for (let dayIdx = 0; dayIdx < monthTotalDays; dayIdx++) {
17429
+ days.push(date);
17430
+ const nextDay = addDays(date, 1);
17431
+ date = nextDay;
17432
+ }
17433
+ }
17434
+ return days;
17435
+ }
17436
+ getLastDayOfMonth(year, month) {
17437
+ return new Date(year, month + 1, 0).getDate();
17438
+ }
17439
+ updateTds() {
17440
+ this.cachedTds.forEach((td) => {
17441
+ this.renderer.setAttribute(td, 'class', 'k-calendar-td');
17442
+ });
17443
+ this.cachedTds = [];
17444
+ this.tds = Array.from(this.calendar.element.nativeElement.querySelectorAll('.k-calendar-td:not(.k-other-month)'));
17445
+ if (this.slotClass) {
17446
+ this.tds.forEach((td) => {
17447
+ const date = toUTCDate(new Date(getDateAttribute(td)));
17448
+ const userClass = this.getSlotClass(date);
17449
+ if (userClass) {
17450
+ this.renderer.addClass(td, userClass);
17451
+ this.cachedTds.push(td);
17452
+ }
17453
+ });
17454
+ }
17455
+ }
17456
+ }
17457
+ 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 });
17458
+ 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: `
17459
+ <div #content class="k-scheduler-layout k-scheduler-layout-flex k-scheduler-yearview">
17460
+ <div class="k-scheduler-body">
17461
+ <kendo-multiviewcalendar
17462
+ [showOtherMonthDates]="false"
17463
+ [showCalendarHeader]="false"
17464
+ [showViewHeader]="true"
17465
+ [views]="12"
17466
+ [focusedDate]="focusedDate"
17467
+ kendoTooltip
17468
+ filter=".k-calendar-td"
17469
+ showOn="none"
17470
+ [tooltipTemplate]="template"
17471
+ position="right"
17472
+ tooltipContentClass="k-scheduler-tooltip"
17473
+ [tooltipWidth]="220"
17474
+ [collision]="{ horizontal: 'flip', vertical: 'flip' }"
17475
+ (valueChange)="onValueChange($event)"
17476
+ (blur)="onBlur()"
17477
+ >
17478
+ <ng-template kendoCalendarMonthCellTemplate let-date let-context="cellContext">
17479
+ <span *ngIf="!context.isOtherMonth" [attr.date]="date">{{ date.getDate() }}</span>
17480
+ <span *ngIf="!context.isOtherMonth && hasEvent(date)" class="k-day-indicator"></span>
17481
+ </ng-template>
17482
+ </kendo-multiviewcalendar>
17483
+ </div>
17484
+ </div>
17485
+ <ng-template #template let-anchor>
17486
+ <div
17487
+ class="k-tooltip-title k-text-center"
17488
+ (click)="navigateToDay(getDate(anchor))"
17489
+ (mousedown)="onMouseDown()"
17490
+ >
17491
+ <div class="k-month">{{ intl.formatDate(getDate(anchor), 'MMM') }}</div>
17492
+ <div class="k-link k-day k-text-primary">{{ intl.formatDate(getDate(anchor), 'dd') }}</div>
17493
+ </div>
17494
+ <div class="k-tooltip-events-container" (mousedown)="onMouseDown()">
17495
+ <div class="k-tooltip-events">
17496
+ <div
17497
+ *ngFor="let event of eventsPerSelectedDay"
17498
+ class="k-tooltip-event k-event"
17499
+ [title]="eventTitle(event)"
17500
+ [ngClass]="getEventClasses(event, event.resources)"
17501
+ [ngStyle]="getEventStyles(event, event.resources[0], event.isAllDay)"
17502
+ >
17503
+ <kendo-icon-wrapper
17504
+ *ngIf="event.tail || event.mid"
17505
+ [name]="arrowIcons[0]"
17506
+ [svgIcon]="arrowSVGIcons[0]"
17507
+ >
17508
+ </kendo-icon-wrapper>
17509
+ <div class="k-event-title k-text-ellipsis">{{ event.event.title }}</div>
17510
+ <span class="k-spacer"></span>
17511
+ <span
17512
+ class="k-event-time"
17513
+ *ngIf="(event.isMultiDay && event.head && !event.isAllDay) || !event.isMultiDay"
17514
+ >{{ intl.formatDate(event.start, 't') }}</span
17515
+ >
17516
+ <kendo-icon-wrapper
17517
+ *ngIf="event.head || event.mid"
17518
+ [name]="arrowIcons[1]"
17519
+ [svgIcon]="arrowSVGIcons[1]"
17520
+ >
17521
+ </kendo-icon-wrapper>
17522
+ </div>
17523
+ </div>
17524
+ </div>
17525
+ <div *ngIf="eventsPerSelectedDay.length === 0" class="k-no-data k-text-center">
17526
+ {{ localization.get('yearViewNoEvents') }}
17527
+ </div>
17528
+ </ng-template>
17529
+ `, 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"] }] });
17530
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: YearViewInternalComponent, decorators: [{
17531
+ type: Component,
17532
+ args: [{
17533
+ selector: 'year-view-internal',
17534
+ providers: [MonthSlotService],
17535
+ template: `
17536
+ <div #content class="k-scheduler-layout k-scheduler-layout-flex k-scheduler-yearview">
17537
+ <div class="k-scheduler-body">
17538
+ <kendo-multiviewcalendar
17539
+ [showOtherMonthDates]="false"
17540
+ [showCalendarHeader]="false"
17541
+ [showViewHeader]="true"
17542
+ [views]="12"
17543
+ [focusedDate]="focusedDate"
17544
+ kendoTooltip
17545
+ filter=".k-calendar-td"
17546
+ showOn="none"
17547
+ [tooltipTemplate]="template"
17548
+ position="right"
17549
+ tooltipContentClass="k-scheduler-tooltip"
17550
+ [tooltipWidth]="220"
17551
+ [collision]="{ horizontal: 'flip', vertical: 'flip' }"
17552
+ (valueChange)="onValueChange($event)"
17553
+ (blur)="onBlur()"
17554
+ >
17555
+ <ng-template kendoCalendarMonthCellTemplate let-date let-context="cellContext">
17556
+ <span *ngIf="!context.isOtherMonth" [attr.date]="date">{{ date.getDate() }}</span>
17557
+ <span *ngIf="!context.isOtherMonth && hasEvent(date)" class="k-day-indicator"></span>
17558
+ </ng-template>
17559
+ </kendo-multiviewcalendar>
17560
+ </div>
17561
+ </div>
17562
+ <ng-template #template let-anchor>
17563
+ <div
17564
+ class="k-tooltip-title k-text-center"
17565
+ (click)="navigateToDay(getDate(anchor))"
17566
+ (mousedown)="onMouseDown()"
17567
+ >
17568
+ <div class="k-month">{{ intl.formatDate(getDate(anchor), 'MMM') }}</div>
17569
+ <div class="k-link k-day k-text-primary">{{ intl.formatDate(getDate(anchor), 'dd') }}</div>
17570
+ </div>
17571
+ <div class="k-tooltip-events-container" (mousedown)="onMouseDown()">
17572
+ <div class="k-tooltip-events">
17573
+ <div
17574
+ *ngFor="let event of eventsPerSelectedDay"
17575
+ class="k-tooltip-event k-event"
17576
+ [title]="eventTitle(event)"
17577
+ [ngClass]="getEventClasses(event, event.resources)"
17578
+ [ngStyle]="getEventStyles(event, event.resources[0], event.isAllDay)"
17579
+ >
17580
+ <kendo-icon-wrapper
17581
+ *ngIf="event.tail || event.mid"
17582
+ [name]="arrowIcons[0]"
17583
+ [svgIcon]="arrowSVGIcons[0]"
17584
+ >
17585
+ </kendo-icon-wrapper>
17586
+ <div class="k-event-title k-text-ellipsis">{{ event.event.title }}</div>
17587
+ <span class="k-spacer"></span>
17588
+ <span
17589
+ class="k-event-time"
17590
+ *ngIf="(event.isMultiDay && event.head && !event.isAllDay) || !event.isMultiDay"
17591
+ >{{ intl.formatDate(event.start, 't') }}</span
17592
+ >
17593
+ <kendo-icon-wrapper
17594
+ *ngIf="event.head || event.mid"
17595
+ [name]="arrowIcons[1]"
17596
+ [svgIcon]="arrowSVGIcons[1]"
17597
+ >
17598
+ </kendo-icon-wrapper>
17599
+ </div>
17600
+ </div>
17601
+ </div>
17602
+ <div *ngIf="eventsPerSelectedDay.length === 0" class="k-no-data k-text-center">
17603
+ {{ localization.get('yearViewNoEvents') }}
17604
+ </div>
17605
+ </ng-template>
17606
+ `,
17607
+ }]
17608
+ }], ctorParameters: function () { 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: [{
17609
+ type: Inject,
17610
+ args: [LOCALE_ID]
17611
+ }] }]; }, propDecorators: { newRange: [{
17612
+ type: Input
17613
+ }], dateRangeFn: [{
17614
+ type: Input
17615
+ }], calendar: [{
17616
+ type: ViewChild,
17617
+ args: [MultiViewCalendarComponent]
17618
+ }], tooltip: [{
17619
+ type: ViewChild,
17620
+ args: [TooltipDirective]
17621
+ }], selectedDateFormat: [{
17622
+ type: Input
17623
+ }], selectedShortDateFormat: [{
17624
+ type: Input
17625
+ }] } });
17626
+
17627
+ /**
17628
+ * The component for rendering the **Year** view.
17629
+ */
17630
+ class YearViewComponent extends ConfigurationViewBase {
17631
+ constructor(localization, changeDetector, viewContext, viewState, intl) {
17632
+ super(localization, changeDetector, viewContext, viewState);
17633
+ this.intl = intl;
17634
+ /**
17635
+ * The long-date format for displaying the
17636
+ * selected year in the Scheduler toolbar.
17637
+ * For more information, see [Parsing and Formatting Dates and Numbers]({% slug parsingandformatting_intl %}#toc-date-formatting).
17638
+ * @default '{0:yyy}'
17639
+ */
17640
+ this.selectedDateFormat = '{0:yyy}';
17641
+ /**
17642
+ * The short-date format for displaying the
17643
+ * selected year in the Scheduler toolbar.
17644
+ * For more information, see [Parsing and Formatting Dates and Numbers]({% slug parsingandformatting_intl %}#toc-date-formatting).
17645
+ * @default '{0:yyy}'
17646
+ */
17647
+ this.selectedShortDateFormat = '{0:yyy}';
17648
+ /**
17649
+ * The invariant name for this view.
17650
+ * @default 'year'
17651
+ */
17652
+ this.name = 'year';
17653
+ }
17654
+ /**
17655
+ * @hidden
17656
+ */
17657
+ get title() {
17658
+ return this.localization.get('yearViewTitle');
17659
+ }
17660
+ /**
17661
+ * @hidden
17662
+ */
17663
+ dateRange(date) {
17664
+ const year = date.getFullYear();
17665
+ const start = yearStart(year);
17666
+ const end = yearEnd(year);
17667
+ const text = this.intl.format(this.selectedDateFormat, start);
17668
+ const shortText = this.intl.format(this.selectedShortDateFormat, start);
17669
+ return { start, end, text, shortText };
17670
+ }
17671
+ /**
17672
+ * @hidden
17673
+ */
17674
+ newRange(date, direction = 1) {
17675
+ return new Date(addYears(date, direction));
17676
+ }
17677
+ }
17678
+ 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 });
17679
+ 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: [{
17680
+ provide: SchedulerView,
17681
+ useExisting: forwardRef(() => YearViewComponent)
17682
+ }], usesInheritance: true, ngImport: i0, template: `
17683
+ <ng-template #content>
17684
+ <year-view-internal
17685
+ [selectedDateFormat]="selectedDateFormat"
17686
+ [selectedShortDateFormat]="selectedShortDateFormat"
17687
+ [slotClass]="viewSlotClass"
17688
+ [eventClass]="viewEventClass"
17689
+ [eventStyles]="viewEventStyles"
17690
+ [dateRangeFn]="dateRange"
17691
+ [newRange]="newRange">
17692
+ </year-view-internal>
17693
+ </ng-template>
17694
+ `, isInline: true, components: [{ type: YearViewInternalComponent, selector: "year-view-internal", inputs: ["newRange", "dateRangeFn", "selectedDateFormat", "selectedShortDateFormat"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
17695
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: YearViewComponent, decorators: [{
17696
+ type: Component,
17697
+ args: [{
17698
+ changeDetection: ChangeDetectionStrategy.OnPush,
17699
+ selector: 'kendo-scheduler-year-view',
17700
+ providers: [{
17701
+ provide: SchedulerView,
17702
+ useExisting: forwardRef(() => YearViewComponent)
17703
+ }],
17704
+ template: `
17705
+ <ng-template #content>
17706
+ <year-view-internal
17707
+ [selectedDateFormat]="selectedDateFormat"
17708
+ [selectedShortDateFormat]="selectedShortDateFormat"
17709
+ [slotClass]="viewSlotClass"
17710
+ [eventClass]="viewEventClass"
17711
+ [eventStyles]="viewEventStyles"
17712
+ [dateRangeFn]="dateRange"
17713
+ [newRange]="newRange">
17714
+ </year-view-internal>
17715
+ </ng-template>
17716
+ `
17717
+ }]
17718
+ }], ctorParameters: function () { return [{ type: i1$1.LocalizationService }, { type: i0.ChangeDetectorRef }, { type: ViewContextService }, { type: ViewStateService }, { type: i1$4.IntlService }]; }, propDecorators: { selectedDateFormat: [{
17719
+ type: Input
17720
+ }], selectedShortDateFormat: [{
17721
+ type: Input
17722
+ }] } });
17723
+
17724
+ /**
17725
+ * @hidden
17726
+ */
17727
+ class YearViewModule {
17728
+ }
17729
+ YearViewModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: YearViewModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
17730
+ YearViewModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: YearViewModule, declarations: [YearViewComponent,
17731
+ YearViewInternalComponent], imports: [ViewsSharedModule,
17732
+ CalendarsModule,
17733
+ TooltipsModule,
17734
+ IntlModule], exports: [YearViewComponent] });
17735
+ YearViewModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: YearViewModule, imports: [[
17736
+ ViewsSharedModule,
17737
+ CalendarsModule,
17738
+ TooltipsModule,
17739
+ IntlModule
17740
+ ]] });
17741
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: YearViewModule, decorators: [{
17742
+ type: NgModule,
17743
+ args: [{
17744
+ imports: [
17745
+ ViewsSharedModule,
17746
+ CalendarsModule,
17747
+ TooltipsModule,
17748
+ IntlModule
17749
+ ],
17750
+ exports: [
17751
+ YearViewComponent
17752
+ ],
17753
+ declarations: [
17754
+ YearViewComponent,
17755
+ YearViewInternalComponent
17756
+ ]
17757
+ }]
17758
+ }] });
17759
+
16885
17760
  const TEMPLATES = [
16886
17761
  AgendaDateTemplateDirective,
16887
17762
  AgendaTimeTemplateDirective,
@@ -16927,6 +17802,7 @@ const declarations$1 = [
16927
17802
  const publicDirectives = [
16928
17803
  AgendaViewComponent,
16929
17804
  MonthViewModule,
17805
+ YearViewComponent,
16930
17806
  MultiDayViewModule,
16931
17807
  ReactiveEditingDirective,
16932
17808
  TimelineViewModule,
@@ -17011,7 +17887,8 @@ SchedulerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version
17011
17887
  ResizeSensorModule,
17012
17888
  MonthViewModule,
17013
17889
  TimelineViewModule,
17014
- WatermarkModule, ButtonsModule,
17890
+ WatermarkModule,
17891
+ YearViewModule, ButtonsModule,
17015
17892
  CheckBoxModule,
17016
17893
  TextAreaModule,
17017
17894
  DateInputsModule,
@@ -17024,6 +17901,7 @@ SchedulerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version
17024
17901
  LabelModule,
17025
17902
  FormFieldModule], exports: [AgendaViewComponent,
17026
17903
  MonthViewModule,
17904
+ YearViewComponent,
17027
17905
  MultiDayViewModule,
17028
17906
  ReactiveEditingDirective,
17029
17907
  TimelineViewModule, ToolbarNavigationComponent, ToolbarTemplateDirective, ToolbarViewSelectorComponent, SchedulerComponent,
@@ -17074,6 +17952,7 @@ SchedulerModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version
17074
17952
  MonthViewModule,
17075
17953
  TimelineViewModule,
17076
17954
  WatermarkModule,
17955
+ YearViewModule,
17077
17956
  ...importedKendoModules
17078
17957
  ], MonthViewModule,
17079
17958
  MultiDayViewModule,
@@ -17090,6 +17969,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
17090
17969
  MonthViewModule,
17091
17970
  TimelineViewModule,
17092
17971
  WatermarkModule,
17972
+ YearViewModule,
17093
17973
  ...importedKendoModules
17094
17974
  ],
17095
17975
  declarations: declarations$1,
@@ -17646,5 +18526,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
17646
18526
  * Generated bundle index. Do not edit.
17647
18527
  */
17648
18528
 
17649
- 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 };
18529
+ 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 };
17650
18530