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

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.
@@ -21,7 +21,7 @@ import { formatDate, CldrIntlService, DatePipe, parseDate } from '@progress/kend
21
21
  import { MultiSelectComponent, ItemTemplateDirective, TagTemplateDirective, DropDownListComponent } from '@progress/kendo-angular-dropdowns';
22
22
  import { NgStyle, NgTemplateOutlet, AsyncPipe, NgClass } from '@angular/common';
23
23
  import { rightDoubleQuotesIcon, clockIcon, commentIcon, globeIcon, arrowRotateCwIcon, trashIcon, calendarIcon, chevronRightIcon, chevronLeftIcon, plusIcon, filePdfIcon, arrowsNoRepeatIcon, xIcon, moreHorizontalIcon, chevronUpIcon, chevronDownIcon } from '@progress/kendo-svg-icons';
24
- import { ButtonComponent, SegmentedControlComponent, SplitButtonComponent, Button } from '@progress/kendo-angular-buttons';
24
+ import { ButtonComponent, SegmentedControlComponent, DropDownButtonComponent, Button } from '@progress/kendo-angular-buttons';
25
25
  import { NumericTextBoxComponent, NumericTextBoxCustomMessagesComponent, FormFieldComponent, TextBoxDirective, TextAreaComponent, SwitchComponent } from '@progress/kendo-angular-inputs';
26
26
  import { parseRule, serializeRule, expand } from '@progress/kendo-recurrence';
27
27
  import { DatePickerComponent, DatePickerCustomMessagesComponent, TimePickerComponent, TimePickerCustomMessagesComponent, CalendarComponent, CalendarCustomMessagesComponent, MultiViewCalendarComponent, MonthCellTemplateDirective, CalendarDOMService, CenturyViewService, DecadeViewService, MonthViewService, YearViewService, NavigationService, TimePickerDOMService, HoursService, MinutesService, SecondsService, MillisecondsService, DayPeriodService } from '@progress/kendo-angular-dateinputs';
@@ -43,8 +43,8 @@ const packageMetadata = {
43
43
  productName: 'Kendo UI for Angular',
44
44
  productCode: 'KENDOUIANGULAR',
45
45
  productCodes: ['KENDOUIANGULAR'],
46
- publishDate: 1785940557,
47
- version: '25.0.0-develop.23',
46
+ publishDate: 1786102910,
47
+ version: '25.0.0-develop.25',
48
48
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
49
49
  };
50
50
 
@@ -3526,7 +3526,7 @@ class RecurrenceService {
3526
3526
  * (e.g. "Repeats every month on the second weekend day.") displayed as a hint in the recurrence editor.
3527
3527
  * This text is composed in English and is not localizable.
3528
3528
  */
3529
- get repeatsHintText() {
3529
+ get repeatsSummaryText() {
3530
3530
  if (this.frequency === 'never') {
3531
3531
  return '';
3532
3532
  }
@@ -3538,11 +3538,11 @@ class RecurrenceService {
3538
3538
  case 'daily':
3539
3539
  return `${this.textFor('dailyRepeatEvery')} ${interval} ${this.textFor('dailyInterval')}`;
3540
3540
  case 'weekly':
3541
- return `${this.textFor('weeklyRepeatEvery')} ${interval} ${this.textFor('weeklyInterval')} ${this.textFor('endOn').toLowerCase()} ${this.repeatsWeekDaysText()}`;
3541
+ return `${this.textFor('weeklyRepeatEvery')} ${interval} ${this.textFor('weeklyInterval')} ${this.textFor('weeklyRepeatOn').toLowerCase()} ${this.repeatsWeekDaysText()}`;
3542
3542
  case 'monthly':
3543
- return `${this.textFor('monthlyRepeatEvery')} ${interval} ${this.textFor('monthlyInterval')} ${this.textFor('endOn').toLowerCase()} ${this.repeatsMonthlyRepeatOnText()}`;
3543
+ return `${this.textFor('monthlyRepeatEvery')} ${interval} ${this.textFor('monthlyInterval')} ${this.textFor('monthlyRepeatOn').toLowerCase()} ${this.repeatsMonthlyRepeatOnText()}`;
3544
3544
  case 'yearly':
3545
- return `${this.textFor('yearlyRepeatEvery')} ${interval} ${this.textFor('yearlyInterval')} ${this.textFor('endOn').toLowerCase()} ${this.repeatsYearlyRepeatOnText()}`;
3545
+ return `${this.textFor('yearlyRepeatEvery')} ${interval} ${this.textFor('yearlyInterval')} ${this.textFor('yearlyRepeatOn').toLowerCase()} ${this.repeatsYearlyRepeatOnText()}`;
3546
3546
  default:
3547
3547
  return '';
3548
3548
  }
@@ -5106,36 +5106,36 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.26", ngImpo
5106
5106
  }], ctorParameters: () => [{ type: i2.LocalizationService }] });
5107
5107
 
5108
5108
  /**
5109
- * Represents the template directive for customizing the recurrence hint text of the Recurrence Editor.
5110
- * To define the template, nest an `<ng-template>` tag with the `kendoSchedulerRecurrenceEditorHintTemplate` directive
5109
+ * Represents the template directive for customizing the recurrence summary of the Recurrence Editor.
5110
+ * To define the template, nest an `<ng-template>` tag with the `kendoSchedulerRecurrenceSummaryTemplate` directive
5111
5111
  * inside the `<kendo-scheduler>` tag.
5112
5112
  *
5113
5113
  * The template context is set to the current recurrence rule and the following additional fields are passed:
5114
5114
  * - `recurrenceRule`&mdash;The current recurrence rule as a string.
5115
5115
  * - `parsedRule`&mdash;The parsed `RecurrenceRule` object.
5116
- * - `text`&mdash;The default hint text that would have been displayed.
5116
+ * - `text`&mdash;The default summary text that would have been displayed.
5117
5117
  *
5118
5118
  * @example
5119
5119
  * ```html
5120
5120
  * <kendo-scheduler>
5121
- * <ng-template kendoSchedulerRecurrenceEditorHintTemplate let-recurrenceRule let-parsedRule="parsedRule" let-text="text">
5121
+ * <ng-template kendoSchedulerRecurrenceSummaryTemplate let-recurrenceRule let-parsedRule="parsedRule" let-text="text">
5122
5122
  * <span>{{ text }}</span>
5123
5123
  * </ng-template>
5124
5124
  * </kendo-scheduler>
5125
5125
  * ```
5126
5126
  */
5127
- class RecurrenceHintTemplateDirective {
5127
+ class RecurrenceSummaryTemplateDirective {
5128
5128
  templateRef;
5129
5129
  constructor(templateRef) {
5130
5130
  this.templateRef = templateRef;
5131
5131
  }
5132
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.26", ngImport: i0, type: RecurrenceHintTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
5133
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.26", type: RecurrenceHintTemplateDirective, isStandalone: true, selector: "[kendoSchedulerRecurrenceEditorHintTemplate]", ngImport: i0 });
5132
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.26", ngImport: i0, type: RecurrenceSummaryTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
5133
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.26", type: RecurrenceSummaryTemplateDirective, isStandalone: true, selector: "[kendoSchedulerRecurrenceSummaryTemplate]", ngImport: i0 });
5134
5134
  }
5135
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.26", ngImport: i0, type: RecurrenceHintTemplateDirective, decorators: [{
5135
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.26", ngImport: i0, type: RecurrenceSummaryTemplateDirective, decorators: [{
5136
5136
  type: Directive,
5137
5137
  args: [{
5138
- selector: '[kendoSchedulerRecurrenceEditorHintTemplate]',
5138
+ selector: '[kendoSchedulerRecurrenceSummaryTemplate]',
5139
5139
  standalone: true
5140
5140
  }]
5141
5141
  }], ctorParameters: () => [{ type: i0.TemplateRef, decorators: [{
@@ -5214,7 +5214,7 @@ class RecurrenceEditorComponent {
5214
5214
  /**
5215
5215
  * @hidden
5216
5216
  */
5217
- recurrenceHintTemplate;
5217
+ recurrenceSummaryTemplate;
5218
5218
  /**
5219
5219
  * @hidden
5220
5220
  */
@@ -5249,8 +5249,8 @@ class RecurrenceEditorComponent {
5249
5249
  /**
5250
5250
  * @hidden
5251
5251
  */
5252
- get repeatsHintText() {
5253
- return this.recurrenceService.repeatsHintText;
5252
+ get repeatsSummaryText() {
5253
+ return this.recurrenceService.repeatsSummaryText;
5254
5254
  }
5255
5255
  /**
5256
5256
  * @hidden
@@ -5303,7 +5303,7 @@ class RecurrenceEditorComponent {
5303
5303
  this.valueChange.emit(rrule);
5304
5304
  }
5305
5305
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.26", ngImport: i0, type: RecurrenceEditorComponent, deps: [{ token: RecurrenceService }, { token: i4.IntlService }, { token: i2.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
5306
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.26", type: RecurrenceEditorComponent, isStandalone: true, selector: "kendo-recurrence-editor", inputs: { start: "start", timezone: "timezone", weekStart: "weekStart", repeatEveryOptions: "repeatEveryOptions", endAfterOptions: "endAfterOptions", repeatOnOptions: "repeatOnOptions", endOnOptions: "endOnOptions", recurrenceHintTemplate: "recurrenceHintTemplate", recurrenceRule: "recurrenceRule" }, outputs: { valueChange: "valueChange" }, providers: [
5306
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.26", type: RecurrenceEditorComponent, isStandalone: true, selector: "kendo-recurrence-editor", inputs: { start: "start", timezone: "timezone", weekStart: "weekStart", repeatEveryOptions: "repeatEveryOptions", endAfterOptions: "endAfterOptions", repeatOnOptions: "repeatOnOptions", endOnOptions: "endOnOptions", recurrenceSummaryTemplate: "recurrenceSummaryTemplate", recurrenceRule: "recurrenceRule" }, outputs: { valueChange: "valueChange" }, providers: [
5307
5307
  RecurrenceLocalizationService,
5308
5308
  {
5309
5309
  provide: LocalizationService,
@@ -5455,17 +5455,17 @@ class RecurrenceEditorComponent {
5455
5455
  @if (currentFreq !== 'never') {
5456
5456
  <div class="k-form-field">
5457
5457
  <div class="k-form-field-wrap">
5458
- @if (recurrenceHintTemplate) {
5459
- <ng-container [ngTemplateOutlet]="recurrenceHintTemplate.templateRef"
5458
+ @if (recurrenceSummaryTemplate) {
5459
+ <ng-container [ngTemplateOutlet]="recurrenceSummaryTemplate.templateRef"
5460
5460
  [ngTemplateOutletContext]="{
5461
5461
  $implicit: recurrenceRule,
5462
5462
  recurrenceRule: recurrenceRule,
5463
5463
  parsedRule: currentParsedRule,
5464
- text: repeatsHintText
5464
+ text: repeatsSummaryText
5465
5465
  }">
5466
5466
  </ng-container>
5467
5467
  } @else {
5468
- <div class="k-form-hint">{{ repeatsHintText }}</div>
5468
+ <div class="k-form-hint">{{ repeatsSummaryText }}</div>
5469
5469
  }
5470
5470
  </div>
5471
5471
  </div>
@@ -5630,17 +5630,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.26", ngImpo
5630
5630
  @if (currentFreq !== 'never') {
5631
5631
  <div class="k-form-field">
5632
5632
  <div class="k-form-field-wrap">
5633
- @if (recurrenceHintTemplate) {
5634
- <ng-container [ngTemplateOutlet]="recurrenceHintTemplate.templateRef"
5633
+ @if (recurrenceSummaryTemplate) {
5634
+ <ng-container [ngTemplateOutlet]="recurrenceSummaryTemplate.templateRef"
5635
5635
  [ngTemplateOutletContext]="{
5636
5636
  $implicit: recurrenceRule,
5637
5637
  recurrenceRule: recurrenceRule,
5638
5638
  parsedRule: currentParsedRule,
5639
- text: repeatsHintText
5639
+ text: repeatsSummaryText
5640
5640
  }">
5641
5641
  </ng-container>
5642
5642
  } @else {
5643
- <div class="k-form-hint">{{ repeatsHintText }}</div>
5643
+ <div class="k-form-hint">{{ repeatsSummaryText }}</div>
5644
5644
  }
5645
5645
  </div>
5646
5646
  </div>
@@ -5663,7 +5663,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.26", ngImpo
5663
5663
  type: Input
5664
5664
  }], endOnOptions: [{
5665
5665
  type: Input
5666
- }], recurrenceHintTemplate: [{
5666
+ }], recurrenceSummaryTemplate: [{
5667
5667
  type: Input
5668
5668
  }], recurrenceRule: [{
5669
5669
  type: Input
@@ -5923,7 +5923,7 @@ class EditDialogComponent {
5923
5923
  return this.textFor('editorRecurrenceMakeRecurring');
5924
5924
  }
5925
5925
  this.syncRecurrenceService();
5926
- return this.recurrenceService.repeatsHintText || this.textFor('editorRecurrenceEdit');
5926
+ return this.recurrenceService.repeatsSummaryText || this.textFor('editorRecurrenceEdit');
5927
5927
  }
5928
5928
  subs;
5929
5929
  pendingNewEventData;
@@ -6462,7 +6462,7 @@ class EditDialogComponent {
6462
6462
  [start]="recurrenceStart"
6463
6463
  [timezone]="eventTimezone"
6464
6464
  [weekStart]="weekStart"
6465
- [recurrenceHintTemplate]="recurrenceEditorHintTemplate"
6465
+ [recurrenceSummaryTemplate]="recurrenceEditorHintTemplate"
6466
6466
  [recurrenceRule]="currentRule"
6467
6467
  ></kendo-recurrence-editor>
6468
6468
  </div>
@@ -6485,7 +6485,7 @@ class EditDialogComponent {
6485
6485
  </kendo-dialog>
6486
6486
  }
6487
6487
  }
6488
- `, isInline: true, dependencies: [{ kind: "component", type: DialogComponent, selector: "kendo-dialog", inputs: ["actions", "actionsLayout", "autoFocusedElement", "closable", "title", "width", "minWidth", "maxWidth", "height", "minHeight", "maxHeight", "animation"], outputs: ["action", "close"], exportAs: ["kendoDialog"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i5.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i5.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i5.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i5.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i5.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: i5.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "component", type: FormFieldComponent, selector: "kendo-formfield", inputs: ["showHints", "orientation", "showErrors", "colSpan"] }, { kind: "directive", type: TextBoxDirective, selector: "input[kendoTextBox]", inputs: ["value"] }, { kind: "component", type: TimeZoneEditorComponent, selector: "kendo-timezone-editor", inputs: ["width"], outputs: ["valueChange"] }, { kind: "component", type: RecurrenceEditorComponent, selector: "kendo-recurrence-editor", inputs: ["start", "timezone", "weekStart", "repeatEveryOptions", "endAfterOptions", "repeatOnOptions", "endOnOptions", "recurrenceHintTemplate", "recurrenceRule"], outputs: ["valueChange"], exportAs: ["kendoRecurrenceEditor"] }, { kind: "component", type: TextAreaComponent, selector: "kendo-textarea", inputs: ["focusableId", "flow", "inputAttributes", "adornmentsOrientation", "rows", "cols", "maxlength", "maxResizableRows", "tabindex", "tabIndex", "resizable", "size", "rounded", "fillMode", "showPrefixSeparator", "showSuffixSeparator"], outputs: ["focus", "blur", "valueChange"], exportAs: ["kendoTextArea"] }, { kind: "component", type: MultipleResourceEditorComponent, selector: "kendo-multiple-resource-editor" }, { kind: "component", type: SingleResourceEditorComponent, selector: "kendo-single-resource-editor" }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: DialogActionsComponent, selector: "kendo-dialog-actions", inputs: ["actions", "layout"], outputs: ["action"] }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconPosition", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { kind: "component", type: SwitchComponent, selector: "kendo-switch", inputs: ["focusableId", "onLabel", "offLabel", "checked", "disabled", "readonly", "tabindex", "size", "thumbRounded", "trackRounded", "tabIndex"], outputs: ["focus", "blur", "valueChange"], exportAs: ["kendoSwitch"] }, { kind: "component", type: SVGIconComponent, selector: "kendo-svg-icon, kendo-svgicon", inputs: ["icon", "variant"], exportAs: ["kendoSVGIcon"] }, { kind: "component", type: DatePickerComponent, selector: "kendo-datepicker", inputs: ["focusableId", "cellTemplate", "clearButton", "inputAttributes", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "headerTemplate", "footerTemplate", "footer", "navigationItemTemplate", "weekDaysFormat", "showOtherMonthDays", "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", "adaptiveTitle", "adaptiveSubtitle", "rangeValidation", "disabledDatesValidation", "weekNumber", "size", "rounded", "fillMode", "adaptiveMode"], outputs: ["valueChange", "focus", "blur", "open", "close", "escape"], exportAs: ["kendo-datepicker"] }, { kind: "component", type: DatePickerCustomMessagesComponent, selector: "kendo-datepicker-messages" }, { kind: "component", type: TimePickerComponent, selector: "kendo-timepicker", inputs: ["focusableId", "disabled", "readonly", "readOnlyInput", "clearButton", "format", "formatPlaceholder", "placeholder", "min", "max", "incompleteDateValidation", "autoSwitchParts", "autoSwitchKeys", "enableMouseWheel", "allowCaretMode", "cancelButton", "nowButton", "steps", "popupSettings", "tabindex", "tabIndex", "adaptiveTitle", "adaptiveSubtitle", "rangeValidation", "adaptiveMode", "value", "size", "rounded", "fillMode", "inputAttributes"], outputs: ["valueChange", "focus", "blur", "open", "close", "escape"], exportAs: ["kendo-timepicker"] }, { kind: "component", type: TimePickerCustomMessagesComponent, selector: "kendo-timepicker-messages" }] });
6488
+ `, isInline: true, dependencies: [{ kind: "component", type: DialogComponent, selector: "kendo-dialog", inputs: ["actions", "actionsLayout", "autoFocusedElement", "closable", "title", "width", "minWidth", "maxWidth", "height", "minHeight", "maxHeight", "animation"], outputs: ["action", "close"], exportAs: ["kendoDialog"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i5.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i5.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i5.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i5.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i5.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: i5.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "component", type: FormFieldComponent, selector: "kendo-formfield", inputs: ["showHints", "orientation", "showErrors", "colSpan"] }, { kind: "directive", type: TextBoxDirective, selector: "input[kendoTextBox]", inputs: ["value"] }, { kind: "component", type: TimeZoneEditorComponent, selector: "kendo-timezone-editor", inputs: ["width"], outputs: ["valueChange"] }, { kind: "component", type: RecurrenceEditorComponent, selector: "kendo-recurrence-editor", inputs: ["start", "timezone", "weekStart", "repeatEveryOptions", "endAfterOptions", "repeatOnOptions", "endOnOptions", "recurrenceSummaryTemplate", "recurrenceRule"], outputs: ["valueChange"], exportAs: ["kendoRecurrenceEditor"] }, { kind: "component", type: TextAreaComponent, selector: "kendo-textarea", inputs: ["focusableId", "flow", "inputAttributes", "adornmentsOrientation", "rows", "cols", "maxlength", "maxResizableRows", "tabindex", "tabIndex", "resizable", "size", "rounded", "fillMode", "showPrefixSeparator", "showSuffixSeparator"], outputs: ["focus", "blur", "valueChange"], exportAs: ["kendoTextArea"] }, { kind: "component", type: MultipleResourceEditorComponent, selector: "kendo-multiple-resource-editor" }, { kind: "component", type: SingleResourceEditorComponent, selector: "kendo-single-resource-editor" }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: DialogActionsComponent, selector: "kendo-dialog-actions", inputs: ["actions", "layout"], outputs: ["action"] }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconPosition", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { kind: "component", type: SwitchComponent, selector: "kendo-switch", inputs: ["focusableId", "onLabel", "offLabel", "checked", "disabled", "readonly", "tabindex", "size", "thumbRounded", "trackRounded", "tabIndex"], outputs: ["focus", "blur", "valueChange"], exportAs: ["kendoSwitch"] }, { kind: "component", type: SVGIconComponent, selector: "kendo-svg-icon, kendo-svgicon", inputs: ["icon", "variant"], exportAs: ["kendoSVGIcon"] }, { kind: "component", type: DatePickerComponent, selector: "kendo-datepicker", inputs: ["focusableId", "cellTemplate", "clearButton", "inputAttributes", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "headerTemplate", "footerTemplate", "footer", "navigationItemTemplate", "weekDaysFormat", "showOtherMonthDays", "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", "adaptiveTitle", "adaptiveSubtitle", "rangeValidation", "disabledDatesValidation", "weekNumber", "size", "rounded", "fillMode", "adaptiveMode"], outputs: ["valueChange", "focus", "blur", "open", "close", "escape"], exportAs: ["kendo-datepicker"] }, { kind: "component", type: DatePickerCustomMessagesComponent, selector: "kendo-datepicker-messages" }, { kind: "component", type: TimePickerComponent, selector: "kendo-timepicker", inputs: ["focusableId", "disabled", "readonly", "readOnlyInput", "clearButton", "format", "formatPlaceholder", "placeholder", "min", "max", "incompleteDateValidation", "autoSwitchParts", "autoSwitchKeys", "enableMouseWheel", "allowCaretMode", "cancelButton", "nowButton", "steps", "popupSettings", "tabindex", "tabIndex", "adaptiveTitle", "adaptiveSubtitle", "rangeValidation", "adaptiveMode", "value", "size", "rounded", "fillMode", "inputAttributes"], outputs: ["valueChange", "focus", "blur", "open", "close", "escape"], exportAs: ["kendo-timepicker"] }, { kind: "component", type: TimePickerCustomMessagesComponent, selector: "kendo-timepicker-messages" }] });
6489
6489
  }
6490
6490
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.26", ngImport: i0, type: EditDialogComponent, decorators: [{
6491
6491
  type: Component,
@@ -6704,7 +6704,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.26", ngImpo
6704
6704
  [start]="recurrenceStart"
6705
6705
  [timezone]="eventTimezone"
6706
6706
  [weekStart]="weekStart"
6707
- [recurrenceHintTemplate]="recurrenceEditorHintTemplate"
6707
+ [recurrenceSummaryTemplate]="recurrenceEditorHintTemplate"
6708
6708
  [recurrenceRule]="currentRule"
6709
6709
  ></kendo-recurrence-editor>
6710
6710
  </div>
@@ -6892,13 +6892,13 @@ class ToolbarViewSelectorComponent {
6892
6892
  static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.26", type: ToolbarViewSelectorComponent, isStandalone: true, selector: "[kendoSchedulerToolbarViewSelector]", inputs: { displayMode: "displayMode", focusIndex: "focusIndex", responsiveLevel: "responsiveLevel" }, ngImport: i0, template: `
6893
6893
  @if (showDropdown) {
6894
6894
  @if (focusIndex !== null) {
6895
- <kendo-splitbutton [fillMode]="'flat'" class="k-toolbar-menu-button" [data]="ctxViews" textField="title" [kendoSchedulerFocusIndex]="focusIndex" containerType="toolbar" (itemClick)="onChange($event)">
6895
+ <kendo-dropdownbutton [fillMode]="'flat'" [arrowIcon]="true" [buttonClass]="'k-toolbar-menu-button'" [data]="ctxViews" textField="title" [kendoSchedulerFocusIndex]="focusIndex" containerType="toolbar" (itemClick)="onChange($event)">
6896
6896
  {{ ctx.selectedView?.title }}
6897
- </kendo-splitbutton>
6897
+ </kendo-dropdownbutton>
6898
6898
  } @else {
6899
- <kendo-splitbutton [fillMode]="'flat'" class="k-toolbar-menu-button" [data]="ctxViews" textField="title" (itemClick)="onChange($event)">
6899
+ <kendo-dropdownbutton [fillMode]="'flat'" [arrowIcon]="true" [buttonClass]="'k-toolbar-menu-button'" [data]="ctxViews" textField="title" (itemClick)="onChange($event)">
6900
6900
  {{ ctx.selectedView?.title }}
6901
- </kendo-splitbutton>
6901
+ </kendo-dropdownbutton>
6902
6902
  }
6903
6903
  } @else {
6904
6904
  @if (focusIndex !== null) {
@@ -6919,7 +6919,7 @@ class ToolbarViewSelectorComponent {
6919
6919
  </kendo-segmented-control>
6920
6920
  }
6921
6921
  }
6922
- `, isInline: true, dependencies: [{ kind: "directive", type: FocusableDirective, selector: "[kendoSchedulerFocusIndex]", inputs: ["kendoSchedulerFocusIndex", "containerType"] }, { kind: "component", type: SegmentedControlComponent, selector: "kendo-segmented-control", inputs: ["items", "layoutMode", "size", "selected"], outputs: ["selectedChange"] }, { kind: "component", type: SplitButtonComponent, selector: "kendo-splitbutton", inputs: ["text", "icon", "svgIcon", "iconClass", "type", "imageUrl", "size", "rounded", "fillMode", "themeColor", "disabled", "popupSettings", "tabIndex", "textField", "data", "arrowButtonClass", "arrowButtonIcon", "arrowButtonSvgIcon", "buttonAttributes"], outputs: ["buttonClick", "itemClick", "focus", "blur", "open", "close"], exportAs: ["kendoSplitButton"] }] });
6922
+ `, isInline: true, dependencies: [{ kind: "directive", type: FocusableDirective, selector: "[kendoSchedulerFocusIndex]", inputs: ["kendoSchedulerFocusIndex", "containerType"] }, { kind: "component", type: SegmentedControlComponent, selector: "kendo-segmented-control", inputs: ["items", "layoutMode", "size", "selected"], outputs: ["selectedChange"] }, { kind: "component", type: DropDownButtonComponent, selector: "kendo-dropdownbutton", inputs: ["arrowIcon", "icon", "svgIcon", "iconClass", "imageUrl", "textField", "data", "size", "rounded", "fillMode", "themeColor", "buttonAttributes"], outputs: ["itemClick", "focus", "blur"], exportAs: ["kendoDropDownButton"] }] });
6923
6923
  }
6924
6924
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.26", ngImport: i0, type: ToolbarViewSelectorComponent, decorators: [{
6925
6925
  type: Component,
@@ -6928,13 +6928,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.26", ngImpo
6928
6928
  template: `
6929
6929
  @if (showDropdown) {
6930
6930
  @if (focusIndex !== null) {
6931
- <kendo-splitbutton [fillMode]="'flat'" class="k-toolbar-menu-button" [data]="ctxViews" textField="title" [kendoSchedulerFocusIndex]="focusIndex" containerType="toolbar" (itemClick)="onChange($event)">
6931
+ <kendo-dropdownbutton [fillMode]="'flat'" [arrowIcon]="true" [buttonClass]="'k-toolbar-menu-button'" [data]="ctxViews" textField="title" [kendoSchedulerFocusIndex]="focusIndex" containerType="toolbar" (itemClick)="onChange($event)">
6932
6932
  {{ ctx.selectedView?.title }}
6933
- </kendo-splitbutton>
6933
+ </kendo-dropdownbutton>
6934
6934
  } @else {
6935
- <kendo-splitbutton [fillMode]="'flat'" class="k-toolbar-menu-button" [data]="ctxViews" textField="title" (itemClick)="onChange($event)">
6935
+ <kendo-dropdownbutton [fillMode]="'flat'" [arrowIcon]="true" [buttonClass]="'k-toolbar-menu-button'" [data]="ctxViews" textField="title" (itemClick)="onChange($event)">
6936
6936
  {{ ctx.selectedView?.title }}
6937
- </kendo-splitbutton>
6937
+ </kendo-dropdownbutton>
6938
6938
  }
6939
6939
  } @else {
6940
6940
  @if (focusIndex !== null) {
@@ -6957,7 +6957,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.26", ngImpo
6957
6957
  }
6958
6958
  `,
6959
6959
  standalone: true,
6960
- imports: [FocusableDirective, SegmentedControlComponent, SplitButtonComponent]
6960
+ imports: [FocusableDirective, SegmentedControlComponent, DropDownButtonComponent]
6961
6961
  }]
6962
6962
  }], ctorParameters: () => [{ type: ToolbarService }, { type: i2.LocalizationService }], propDecorators: { displayMode: [{
6963
6963
  type: Input
@@ -8739,7 +8739,7 @@ class SchedulerComponent {
8739
8739
  /**
8740
8740
  * @hidden
8741
8741
  */
8742
- recurrenceHintTemplate;
8742
+ recurrenceSummaryTemplate;
8743
8743
  /**
8744
8744
  * @hidden
8745
8745
  */
@@ -9444,7 +9444,7 @@ class SchedulerComponent {
9444
9444
  ViewStateService,
9445
9445
  PDFService,
9446
9446
  provideComponentName('scheduler')
9447
- ], queries: [{ propertyName: "editDialogTemplate", first: true, predicate: EditDialogTemplateDirective, descendants: true }, { propertyName: "recurrenceButtonTextTemplate", first: true, predicate: RecurrenceButtonTextTemplateDirective, descendants: true }, { propertyName: "recurrenceHintTemplate", first: true, predicate: RecurrenceHintTemplateDirective, descendants: true }, { propertyName: "toolbarTemplate", first: true, predicate: ToolbarTemplateDirective, descendants: true }, { propertyName: "views", predicate: SchedulerView }, { propertyName: "allDayEventTemplate", predicate: AllDayEventTemplateDirective }, { propertyName: "eventTemplate", predicate: EventTemplateDirective }, { propertyName: "timeSlotTemplate", predicate: TimeSlotTemplateDirective }, { propertyName: "minorTimeHeaderTemplate", predicate: MinorTimeHeaderTemplateDirective }, { propertyName: "majorTimeHeaderTemplate", predicate: MajorTimeHeaderTemplateDirective }, { propertyName: "monthDaySlotTemplate", predicate: MonthDaySlotTemplateDirective }, { propertyName: "multiWeekDaySlotTemplate", predicate: MultiWeekDaySlotTemplateDirective }, { propertyName: "dateHeaderTemplate", predicate: DateHeaderTemplateDirective }, { propertyName: "allDaySlotTemplate", predicate: AllDaySlotTemplateDirective }, { propertyName: "groupHeaderTemplate", predicate: GroupHeaderTemplateDirective }, { propertyName: "agendaDateTemplate", predicate: AgendaDateTemplateDirective }, { propertyName: "agendaTimeTemplate", predicate: AgendaTimeTemplateDirective }], viewQueries: [{ propertyName: "resizeSensor", first: true, predicate: ResizeSensorComponent, descendants: true, static: true }, { propertyName: "confirmationDialogContainerRef", first: true, predicate: ["confirmationDialogContainer"], descendants: true, read: ViewContainerRef, static: true }], usesOnChanges: true, ngImport: i0, template: `
9447
+ ], queries: [{ propertyName: "editDialogTemplate", first: true, predicate: EditDialogTemplateDirective, descendants: true }, { propertyName: "recurrenceButtonTextTemplate", first: true, predicate: RecurrenceButtonTextTemplateDirective, descendants: true }, { propertyName: "recurrenceSummaryTemplate", first: true, predicate: RecurrenceSummaryTemplateDirective, descendants: true }, { propertyName: "toolbarTemplate", first: true, predicate: ToolbarTemplateDirective, descendants: true }, { propertyName: "views", predicate: SchedulerView }, { propertyName: "allDayEventTemplate", predicate: AllDayEventTemplateDirective }, { propertyName: "eventTemplate", predicate: EventTemplateDirective }, { propertyName: "timeSlotTemplate", predicate: TimeSlotTemplateDirective }, { propertyName: "minorTimeHeaderTemplate", predicate: MinorTimeHeaderTemplateDirective }, { propertyName: "majorTimeHeaderTemplate", predicate: MajorTimeHeaderTemplateDirective }, { propertyName: "monthDaySlotTemplate", predicate: MonthDaySlotTemplateDirective }, { propertyName: "multiWeekDaySlotTemplate", predicate: MultiWeekDaySlotTemplateDirective }, { propertyName: "dateHeaderTemplate", predicate: DateHeaderTemplateDirective }, { propertyName: "allDaySlotTemplate", predicate: AllDaySlotTemplateDirective }, { propertyName: "groupHeaderTemplate", predicate: GroupHeaderTemplateDirective }, { propertyName: "agendaDateTemplate", predicate: AgendaDateTemplateDirective }, { propertyName: "agendaTimeTemplate", predicate: AgendaTimeTemplateDirective }], viewQueries: [{ propertyName: "resizeSensor", first: true, predicate: ResizeSensorComponent, descendants: true, static: true }, { propertyName: "confirmationDialogContainerRef", first: true, predicate: ["confirmationDialogContainer"], descendants: true, read: ViewContainerRef, static: true }], usesOnChanges: true, ngImport: i0, template: `
9448
9448
  <ng-container kendoSchedulerLocalizedMessages
9449
9449
  i18n-allEvents="kendo.scheduler.allEvents|The All events text displayed in the timeline views when there is no vertical grouping."
9450
9450
  allEvents="All events"
@@ -9665,8 +9665,8 @@ class SchedulerComponent {
9665
9665
  i18n-recurrenceEditorWeeklyRepeatEvery="kendo.scheduler.recurrenceEditorWeeklyRepeatEvery|The text similar to 'Repeats every' displayed in the Scheduler recurrence editor."
9666
9666
  recurrenceEditorWeeklyRepeatEvery='Repeats every'
9667
9667
 
9668
- i18n-recurrenceEditorWeeklyRepeatOn="kendo.scheduler.recurrenceEditorWeeklyRepeatOn|The text similar to 'Repeat on' displayed in the Scheduler recurrence editor."
9669
- recurrenceEditorWeeklyRepeatOn='Repeat on'
9668
+ i18n-recurrenceEditorWeeklyRepeatOn="kendo.scheduler.recurrenceEditorWeeklyRepeatOn|The text similar to 'On' displayed in the Scheduler recurrence editor."
9669
+ recurrenceEditorWeeklyRepeatOn='On'
9670
9670
 
9671
9671
  i18n-recurrenceEditorMonthlyDay="kendo.scheduler.recurrenceEditorMonthlyDay|The text similar to 'Day' displayed in the Scheduler recurrence editor."
9672
9672
  recurrenceEditorMonthlyDay='Day'
@@ -9677,8 +9677,8 @@ class SchedulerComponent {
9677
9677
  i18n-recurrenceEditorMonthlyRepeatEvery="kendo.scheduler.recurrenceEditorMonthlyRepeatEvery|The text similar to 'Repeats every' displayed in the Scheduler recurrence editor."
9678
9678
  recurrenceEditorMonthlyRepeatEvery='Repeats every'
9679
9679
 
9680
- i18n-recurrenceEditorMonthlyRepeatOn="kendo.scheduler.recurrenceEditorMonthlyRepeatOn|The text similar to 'Repeat on' displayed in the Scheduler recurrence editor."
9681
- recurrenceEditorMonthlyRepeatOn='Repeat on'
9680
+ i18n-recurrenceEditorMonthlyRepeatOn="kendo.scheduler.recurrenceEditorMonthlyRepeatOn|The text similar to 'On' displayed in the Scheduler recurrence editor."
9681
+ recurrenceEditorMonthlyRepeatOn='On'
9682
9682
 
9683
9683
  i18n-recurrenceEditorYearlyOf="kendo.scheduler.recurrenceEditorYearlyOf|The text similar to 'of' displayed in the Scheduler recurrence editor."
9684
9684
  recurrenceEditorYearlyOf='of'
@@ -9686,8 +9686,8 @@ class SchedulerComponent {
9686
9686
  i18n-recurrenceEditorYearlyRepeatEvery="kendo.scheduler.recurrenceEditorYearlyRepeatEvery|The text similar to 'Repeats every' displayed in the Scheduler recurrence editor."
9687
9687
  recurrenceEditorYearlyRepeatEvery='Repeats every'
9688
9688
 
9689
- i18n-recurrenceEditorYearlyRepeatOn="kendo.scheduler.recurrenceEditorYearlyRepeatOn|The text similar to 'Repeat on' displayed in the Scheduler recurrence editor."
9690
- recurrenceEditorYearlyRepeatOn='Repeat on'
9689
+ i18n-recurrenceEditorYearlyRepeatOn="kendo.scheduler.recurrenceEditorYearlyRepeatOn|The text similar to 'On' displayed in the Scheduler recurrence editor."
9690
+ recurrenceEditorYearlyRepeatOn='On'
9691
9691
 
9692
9692
  i18n-recurrenceEditorYearlyInterval="kendo.scheduler.recurrenceEditorYearlyInterval|The text similar to 'year(s)' displayed in the Scheduler recurrence editor."
9693
9693
  recurrenceEditorYearlyInterval='year(s)'
@@ -9819,7 +9819,7 @@ class SchedulerComponent {
9819
9819
  [resources]="resources"
9820
9820
  [editTemplate]="editDialogTemplate"
9821
9821
  [recurrenceButtonTextTemplate]="recurrenceButtonTextTemplate"
9822
- [recurrenceEditorHintTemplate]="recurrenceHintTemplate"
9822
+ [recurrenceEditorHintTemplate]="recurrenceSummaryTemplate"
9823
9823
  [timezone]="timezone"
9824
9824
  [weekStart]="weekStart"
9825
9825
  [fields]="modelFields"
@@ -10087,8 +10087,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.26", ngImpo
10087
10087
  i18n-recurrenceEditorWeeklyRepeatEvery="kendo.scheduler.recurrenceEditorWeeklyRepeatEvery|The text similar to 'Repeats every' displayed in the Scheduler recurrence editor."
10088
10088
  recurrenceEditorWeeklyRepeatEvery='Repeats every'
10089
10089
 
10090
- i18n-recurrenceEditorWeeklyRepeatOn="kendo.scheduler.recurrenceEditorWeeklyRepeatOn|The text similar to 'Repeat on' displayed in the Scheduler recurrence editor."
10091
- recurrenceEditorWeeklyRepeatOn='Repeat on'
10090
+ i18n-recurrenceEditorWeeklyRepeatOn="kendo.scheduler.recurrenceEditorWeeklyRepeatOn|The text similar to 'On' displayed in the Scheduler recurrence editor."
10091
+ recurrenceEditorWeeklyRepeatOn='On'
10092
10092
 
10093
10093
  i18n-recurrenceEditorMonthlyDay="kendo.scheduler.recurrenceEditorMonthlyDay|The text similar to 'Day' displayed in the Scheduler recurrence editor."
10094
10094
  recurrenceEditorMonthlyDay='Day'
@@ -10099,8 +10099,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.26", ngImpo
10099
10099
  i18n-recurrenceEditorMonthlyRepeatEvery="kendo.scheduler.recurrenceEditorMonthlyRepeatEvery|The text similar to 'Repeats every' displayed in the Scheduler recurrence editor."
10100
10100
  recurrenceEditorMonthlyRepeatEvery='Repeats every'
10101
10101
 
10102
- i18n-recurrenceEditorMonthlyRepeatOn="kendo.scheduler.recurrenceEditorMonthlyRepeatOn|The text similar to 'Repeat on' displayed in the Scheduler recurrence editor."
10103
- recurrenceEditorMonthlyRepeatOn='Repeat on'
10102
+ i18n-recurrenceEditorMonthlyRepeatOn="kendo.scheduler.recurrenceEditorMonthlyRepeatOn|The text similar to 'On' displayed in the Scheduler recurrence editor."
10103
+ recurrenceEditorMonthlyRepeatOn='On'
10104
10104
 
10105
10105
  i18n-recurrenceEditorYearlyOf="kendo.scheduler.recurrenceEditorYearlyOf|The text similar to 'of' displayed in the Scheduler recurrence editor."
10106
10106
  recurrenceEditorYearlyOf='of'
@@ -10108,8 +10108,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.26", ngImpo
10108
10108
  i18n-recurrenceEditorYearlyRepeatEvery="kendo.scheduler.recurrenceEditorYearlyRepeatEvery|The text similar to 'Repeats every' displayed in the Scheduler recurrence editor."
10109
10109
  recurrenceEditorYearlyRepeatEvery='Repeats every'
10110
10110
 
10111
- i18n-recurrenceEditorYearlyRepeatOn="kendo.scheduler.recurrenceEditorYearlyRepeatOn|The text similar to 'Repeat on' displayed in the Scheduler recurrence editor."
10112
- recurrenceEditorYearlyRepeatOn='Repeat on'
10111
+ i18n-recurrenceEditorYearlyRepeatOn="kendo.scheduler.recurrenceEditorYearlyRepeatOn|The text similar to 'On' displayed in the Scheduler recurrence editor."
10112
+ recurrenceEditorYearlyRepeatOn='On'
10113
10113
 
10114
10114
  i18n-recurrenceEditorYearlyInterval="kendo.scheduler.recurrenceEditorYearlyInterval|The text similar to 'year(s)' displayed in the Scheduler recurrence editor."
10115
10115
  recurrenceEditorYearlyInterval='year(s)'
@@ -10241,7 +10241,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.26", ngImpo
10241
10241
  [resources]="resources"
10242
10242
  [editTemplate]="editDialogTemplate"
10243
10243
  [recurrenceButtonTextTemplate]="recurrenceButtonTextTemplate"
10244
- [recurrenceEditorHintTemplate]="recurrenceHintTemplate"
10244
+ [recurrenceEditorHintTemplate]="recurrenceSummaryTemplate"
10245
10245
  [timezone]="timezone"
10246
10246
  [weekStart]="weekStart"
10247
10247
  [fields]="modelFields"
@@ -10396,9 +10396,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.26", ngImpo
10396
10396
  }], recurrenceButtonTextTemplate: [{
10397
10397
  type: ContentChild,
10398
10398
  args: [RecurrenceButtonTextTemplateDirective, { static: false }]
10399
- }], recurrenceHintTemplate: [{
10399
+ }], recurrenceSummaryTemplate: [{
10400
10400
  type: ContentChild,
10401
- args: [RecurrenceHintTemplateDirective, { static: false }]
10401
+ args: [RecurrenceSummaryTemplateDirective, { static: false }]
10402
10402
  }], toolbarTemplate: [{
10403
10403
  type: ContentChild,
10404
10404
  args: [ToolbarTemplateDirective, { static: false }]
@@ -22644,7 +22644,7 @@ const KENDO_SCHEDULER = [
22644
22644
  ReactiveEditingDirective,
22645
22645
  RecurrenceButtonTextTemplateDirective,
22646
22646
  RecurrenceEditorComponent,
22647
- RecurrenceHintTemplateDirective,
22647
+ RecurrenceSummaryTemplateDirective,
22648
22648
  TimeZoneEditorComponent,
22649
22649
  // toolbar
22650
22650
  ToolbarNavigationComponent,
@@ -22687,7 +22687,7 @@ const KENDO_SCHEDULER = [
22687
22687
  */
22688
22688
  class SchedulerModule {
22689
22689
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.26", ngImport: i0, type: SchedulerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
22690
- static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.26", ngImport: i0, type: SchedulerModule, imports: [SchedulerComponent, SchedulerCustomMessagesComponent, SchedulerViewDirective, DataBindingDirective, SlotSelectableDirective, PDFComponent, PDFCommandDirective, ShortcutsDirective, AgendaViewComponent, DayViewComponent, MonthViewComponent, MultiDayViewComponent, MultiWeekViewComponent, TimelineMonthViewComponent, TimelineViewComponent, TimelineWeekViewComponent, WeekViewComponent, WorkWeekViewComponent, YearViewComponent, ReactiveEditingDirective, RecurrenceButtonTextTemplateDirective, RecurrenceEditorComponent, RecurrenceHintTemplateDirective, TimeZoneEditorComponent, ToolbarNavigationComponent, ToolbarTemplateDirective, ToolbarViewSelectorComponent, AgendaDateTemplateDirective, AgendaTimeTemplateDirective, AllDayEventTemplateDirective, AllDaySlotTemplateDirective, DateHeaderTemplateDirective, EventTemplateDirective, EditDialogTemplateDirective, GroupHeaderTemplateDirective, MajorTimeHeaderTemplateDirective, MinorTimeHeaderTemplateDirective, MonthDaySlotTemplateDirective, MultiWeekDaySlotTemplateDirective, TimeSlotTemplateDirective], exports: [SchedulerComponent, SchedulerCustomMessagesComponent, SchedulerViewDirective, DataBindingDirective, SlotSelectableDirective, PDFComponent, PDFCommandDirective, ShortcutsDirective, AgendaViewComponent, DayViewComponent, MonthViewComponent, MultiDayViewComponent, MultiWeekViewComponent, TimelineMonthViewComponent, TimelineViewComponent, TimelineWeekViewComponent, WeekViewComponent, WorkWeekViewComponent, YearViewComponent, ReactiveEditingDirective, RecurrenceButtonTextTemplateDirective, RecurrenceEditorComponent, RecurrenceHintTemplateDirective, TimeZoneEditorComponent, ToolbarNavigationComponent, ToolbarTemplateDirective, ToolbarViewSelectorComponent, AgendaDateTemplateDirective, AgendaTimeTemplateDirective, AllDayEventTemplateDirective, AllDaySlotTemplateDirective, DateHeaderTemplateDirective, EventTemplateDirective, EditDialogTemplateDirective, GroupHeaderTemplateDirective, MajorTimeHeaderTemplateDirective, MinorTimeHeaderTemplateDirective, MonthDaySlotTemplateDirective, MultiWeekDaySlotTemplateDirective, TimeSlotTemplateDirective] });
22690
+ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.26", ngImport: i0, type: SchedulerModule, imports: [SchedulerComponent, SchedulerCustomMessagesComponent, SchedulerViewDirective, DataBindingDirective, SlotSelectableDirective, PDFComponent, PDFCommandDirective, ShortcutsDirective, AgendaViewComponent, DayViewComponent, MonthViewComponent, MultiDayViewComponent, MultiWeekViewComponent, TimelineMonthViewComponent, TimelineViewComponent, TimelineWeekViewComponent, WeekViewComponent, WorkWeekViewComponent, YearViewComponent, ReactiveEditingDirective, RecurrenceButtonTextTemplateDirective, RecurrenceEditorComponent, RecurrenceSummaryTemplateDirective, TimeZoneEditorComponent, ToolbarNavigationComponent, ToolbarTemplateDirective, ToolbarViewSelectorComponent, AgendaDateTemplateDirective, AgendaTimeTemplateDirective, AllDayEventTemplateDirective, AllDaySlotTemplateDirective, DateHeaderTemplateDirective, EventTemplateDirective, EditDialogTemplateDirective, GroupHeaderTemplateDirective, MajorTimeHeaderTemplateDirective, MinorTimeHeaderTemplateDirective, MonthDaySlotTemplateDirective, MultiWeekDaySlotTemplateDirective, TimeSlotTemplateDirective], exports: [SchedulerComponent, SchedulerCustomMessagesComponent, SchedulerViewDirective, DataBindingDirective, SlotSelectableDirective, PDFComponent, PDFCommandDirective, ShortcutsDirective, AgendaViewComponent, DayViewComponent, MonthViewComponent, MultiDayViewComponent, MultiWeekViewComponent, TimelineMonthViewComponent, TimelineViewComponent, TimelineWeekViewComponent, WeekViewComponent, WorkWeekViewComponent, YearViewComponent, ReactiveEditingDirective, RecurrenceButtonTextTemplateDirective, RecurrenceEditorComponent, RecurrenceSummaryTemplateDirective, TimeZoneEditorComponent, ToolbarNavigationComponent, ToolbarTemplateDirective, ToolbarViewSelectorComponent, AgendaDateTemplateDirective, AgendaTimeTemplateDirective, AllDayEventTemplateDirective, AllDaySlotTemplateDirective, DateHeaderTemplateDirective, EventTemplateDirective, EditDialogTemplateDirective, GroupHeaderTemplateDirective, MajorTimeHeaderTemplateDirective, MinorTimeHeaderTemplateDirective, MonthDaySlotTemplateDirective, MultiWeekDaySlotTemplateDirective, TimeSlotTemplateDirective] });
22691
22691
  static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.26", ngImport: i0, type: SchedulerModule, providers: [
22692
22692
  ToolbarService,
22693
22693
  ViewContextService,
@@ -23143,5 +23143,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.26", ngImpo
23143
23143
  * Generated bundle index. Do not edit.
23144
23144
  */
23145
23145
 
23146
- export { AddEvent, AgendaDateTemplateDirective, AgendaTimeTemplateDirective, AgendaViewComponent, AllDayEventTemplateDirective, AllDaySlotTemplateDirective, BaseEditService, CancelEvent, CreateEvent, CrudOperation, DataBindingDirective, DateChangeEvent, DateHeaderTemplateDirective, DaySlotDirective, DayTimeSlotService, DayTimeViewItemComponent, DayViewComponent, DragEndEvent, DragEvent, DragStartEvent, EditDialogComponent, EditDialogTemplateDirective, EditEvent, EditEventBase, EditMode, EventClickEvent, EventKeydownEvent, EventTemplateDirective, FocusService, FocusableDirective, GroupHeaderTemplateDirective, HintContainerComponent, IsSlotSelectedArgs, KENDO_SCHEDULER, KENDO_SCHEDULERPDF, LoadingComponent, LocalizedMessagesDirective, MajorTimeHeaderTemplateDirective, MinorTimeHeaderTemplateDirective, MonthDaySlotTemplateDirective, MonthViewComponent, MoreEventsClickEvent, MultiDayViewComponent, MultiWeekDaySlotTemplateDirective, MultiWeekViewComponent, MultipleResourceEditorComponent, NavigateEvent, PDFCommandDirective, PDFComponent, PDFExportEvent, PDFModule, PDFService, ReactiveEditingDirective, RecurrenceButtonTextTemplateDirective, RecurrenceEditorComponent, RecurrenceEditorCustomMessagesComponent, RecurrenceEditorLocalizedMessagesDirective, RecurrenceEndRuleEditorComponent, RecurrenceFrequencyEditorComponent, RecurrenceHintTemplateDirective, RecurrenceIntervalEditorComponent, RecurrenceMonthlyYearlyEditorComponent, RecurrenceWeekdayRuleEditorComponent, RemoveEvent, RepeatOnRadioButtonDirective, RepeatPipe, ResizeEndEvent, ResizeEvent, ResizeHintComponent, ResizeStartEvent, ResourceIteratorPipe, SaveEvent, SchedulerComponent, SchedulerCustomMessagesComponent, SchedulerModule, SchedulerView, SchedulerViewDirective, ShortcutsDirective, SingleResourceEditorComponent, SlotClickEvent, SlotDragEndEvent, SlotDragEvent, SlotDragStartEvent, SlotSelectableDirective, SortPipe, TimeSlotDirective, TimeSlotTemplateDirective, TimeZoneEditorComponent, TimelineBase, TimelineMonthViewComponent, TimelineMultiDayViewComponent, TimelineViewComponent, TimelineWeekViewComponent, ToolbarNavigationComponent, ToolbarService, ToolbarTemplateDirective, ToolbarViewSelectorComponent, VIEW_EVENT_MAP, ViewContextService, ViewFooterComponent, ViewStateService, WeekViewComponent, WorkHoursFooterDirective, WorkWeekViewComponent, YearViewComponent, YearViewInternalComponent };
23146
+ export { AddEvent, AgendaDateTemplateDirective, AgendaTimeTemplateDirective, AgendaViewComponent, AllDayEventTemplateDirective, AllDaySlotTemplateDirective, BaseEditService, CancelEvent, CreateEvent, CrudOperation, DataBindingDirective, DateChangeEvent, DateHeaderTemplateDirective, DaySlotDirective, DayTimeSlotService, DayTimeViewItemComponent, DayViewComponent, DragEndEvent, DragEvent, DragStartEvent, EditDialogComponent, EditDialogTemplateDirective, EditEvent, EditEventBase, EditMode, EventClickEvent, EventKeydownEvent, EventTemplateDirective, FocusService, FocusableDirective, GroupHeaderTemplateDirective, HintContainerComponent, IsSlotSelectedArgs, KENDO_SCHEDULER, KENDO_SCHEDULERPDF, LoadingComponent, LocalizedMessagesDirective, MajorTimeHeaderTemplateDirective, MinorTimeHeaderTemplateDirective, MonthDaySlotTemplateDirective, MonthViewComponent, MoreEventsClickEvent, MultiDayViewComponent, MultiWeekDaySlotTemplateDirective, MultiWeekViewComponent, MultipleResourceEditorComponent, NavigateEvent, PDFCommandDirective, PDFComponent, PDFExportEvent, PDFModule, PDFService, ReactiveEditingDirective, RecurrenceButtonTextTemplateDirective, RecurrenceEditorComponent, RecurrenceEditorCustomMessagesComponent, RecurrenceEditorLocalizedMessagesDirective, RecurrenceEndRuleEditorComponent, RecurrenceFrequencyEditorComponent, RecurrenceIntervalEditorComponent, RecurrenceMonthlyYearlyEditorComponent, RecurrenceSummaryTemplateDirective, RecurrenceWeekdayRuleEditorComponent, RemoveEvent, RepeatOnRadioButtonDirective, RepeatPipe, ResizeEndEvent, ResizeEvent, ResizeHintComponent, ResizeStartEvent, ResourceIteratorPipe, SaveEvent, SchedulerComponent, SchedulerCustomMessagesComponent, SchedulerModule, SchedulerView, SchedulerViewDirective, ShortcutsDirective, SingleResourceEditorComponent, SlotClickEvent, SlotDragEndEvent, SlotDragEvent, SlotDragStartEvent, SlotSelectableDirective, SortPipe, TimeSlotDirective, TimeSlotTemplateDirective, TimeZoneEditorComponent, TimelineBase, TimelineMonthViewComponent, TimelineMultiDayViewComponent, TimelineViewComponent, TimelineWeekViewComponent, ToolbarNavigationComponent, ToolbarService, ToolbarTemplateDirective, ToolbarViewSelectorComponent, VIEW_EVENT_MAP, ViewContextService, ViewFooterComponent, ViewStateService, WeekViewComponent, WorkHoursFooterDirective, WorkWeekViewComponent, YearViewComponent, YearViewInternalComponent };
23147
23147
 
package/index.d.ts CHANGED
@@ -2262,29 +2262,29 @@ declare class FocusableDirective implements FocusableElement, OnInit {
2262
2262
  }
2263
2263
 
2264
2264
  /**
2265
- * Represents the template directive for customizing the recurrence hint text of the Recurrence Editor.
2266
- * To define the template, nest an `<ng-template>` tag with the `kendoSchedulerRecurrenceEditorHintTemplate` directive
2265
+ * Represents the template directive for customizing the recurrence summary of the Recurrence Editor.
2266
+ * To define the template, nest an `<ng-template>` tag with the `kendoSchedulerRecurrenceSummaryTemplate` directive
2267
2267
  * inside the `<kendo-scheduler>` tag.
2268
2268
  *
2269
2269
  * The template context is set to the current recurrence rule and the following additional fields are passed:
2270
2270
  * - `recurrenceRule`&mdash;The current recurrence rule as a string.
2271
2271
  * - `parsedRule`&mdash;The parsed `RecurrenceRule` object.
2272
- * - `text`&mdash;The default hint text that would have been displayed.
2272
+ * - `text`&mdash;The default summary text that would have been displayed.
2273
2273
  *
2274
2274
  * @example
2275
2275
  * ```html
2276
2276
  * <kendo-scheduler>
2277
- * <ng-template kendoSchedulerRecurrenceEditorHintTemplate let-recurrenceRule let-parsedRule="parsedRule" let-text="text">
2277
+ * <ng-template kendoSchedulerRecurrenceSummaryTemplate let-recurrenceRule let-parsedRule="parsedRule" let-text="text">
2278
2278
  * <span>{{ text }}</span>
2279
2279
  * </ng-template>
2280
2280
  * </kendo-scheduler>
2281
2281
  * ```
2282
2282
  */
2283
- declare class RecurrenceHintTemplateDirective {
2283
+ declare class RecurrenceSummaryTemplateDirective {
2284
2284
  templateRef: TemplateRef<any>;
2285
2285
  constructor(templateRef: TemplateRef<any>);
2286
- static ɵfac: i0.ɵɵFactoryDeclaration<RecurrenceHintTemplateDirective, [{ optional: true; }]>;
2287
- static ɵdir: i0.ɵɵDirectiveDeclaration<RecurrenceHintTemplateDirective, "[kendoSchedulerRecurrenceEditorHintTemplate]", never, {}, {}, never, never, true, never>;
2286
+ static ɵfac: i0.ɵɵFactoryDeclaration<RecurrenceSummaryTemplateDirective, [{ optional: true; }]>;
2287
+ static ɵdir: i0.ɵɵDirectiveDeclaration<RecurrenceSummaryTemplateDirective, "[kendoSchedulerRecurrenceSummaryTemplate]", never, {}, {}, never, never, true, never>;
2288
2288
  }
2289
2289
 
2290
2290
  /**
@@ -2630,7 +2630,7 @@ declare class SchedulerComponent implements AfterContentInit, OnDestroy, OnInit
2630
2630
  /**
2631
2631
  * @hidden
2632
2632
  */
2633
- recurrenceHintTemplate: RecurrenceHintTemplateDirective;
2633
+ recurrenceSummaryTemplate: RecurrenceSummaryTemplateDirective;
2634
2634
  /**
2635
2635
  * @hidden
2636
2636
  */
@@ -2859,7 +2859,7 @@ declare class SchedulerComponent implements AfterContentInit, OnDestroy, OnInit
2859
2859
  private intlChange;
2860
2860
  private attachElementEventHandlers;
2861
2861
  static ɵfac: i0.ɵɵFactoryDeclaration<SchedulerComponent, never>;
2862
- static ɵcmp: i0.ɵɵComponentDeclaration<SchedulerComponent, "kendo-scheduler", never, { "selectedViewIndex": { "alias": "selectedViewIndex"; "required": false; }; "editable": { "alias": "editable"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "eventHeight": { "alias": "eventHeight"; "required": false; }; "columnWidth": { "alias": "columnWidth"; "required": false; }; "showWorkHours": { "alias": "showWorkHours"; "required": false; }; "startTime": { "alias": "startTime"; "required": false; }; "endTime": { "alias": "endTime"; "required": false; }; "workDayStart": { "alias": "workDayStart"; "required": false; }; "workDayEnd": { "alias": "workDayEnd"; "required": false; }; "workWeekStart": { "alias": "workWeekStart"; "required": false; }; "workWeekEnd": { "alias": "workWeekEnd"; "required": false; }; "weekStart": { "alias": "weekStart"; "required": false; }; "slotDuration": { "alias": "slotDuration"; "required": false; }; "slotDivisions": { "alias": "slotDivisions"; "required": false; }; "slotFill": { "alias": "slotFill"; "required": false; }; "allDaySlot": { "alias": "allDaySlot"; "required": false; }; "scrollTime": { "alias": "scrollTime"; "required": false; }; "group": { "alias": "group"; "required": false; }; "resources": { "alias": "resources"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "timezone": { "alias": "timezone"; "required": false; }; "events": { "alias": "events"; "required": false; }; "selectedDate": { "alias": "selectedDate"; "required": false; }; "modelFields": { "alias": "modelFields"; "required": false; }; "currentTimeMarker": { "alias": "currentTimeMarker"; "required": false; }; "highlightOngoingEvents": { "alias": "highlightOngoingEvents"; "required": false; }; "showToolbar": { "alias": "showToolbar"; "required": false; }; "showFooter": { "alias": "showFooter"; "required": false; }; "slotClass": { "alias": "slotClass"; "required": false; }; "eventClass": { "alias": "eventClass"; "required": false; }; "eventStyles": { "alias": "eventStyles"; "required": false; }; "hiddenDays": { "alias": "hiddenDays"; "required": false; }; "isSlotSelected": { "alias": "isSlotSelected"; "required": false; }; }, { "selectedViewIndexChange": "selectedViewIndexChange"; "navigate": "navigate"; "dateChange": "dateChange"; "slotClick": "slotClick"; "slotDblClick": "slotDblClick"; "create": "create"; "eventClick": "eventClick"; "eventDblClick": "eventDblClick"; "eventKeydown": "eventKeydown"; "cancel": "cancel"; "save": "save"; "remove": "remove"; "resizeStart": "resizeStart"; "resize": "resize"; "resizeEnd": "resizeEnd"; "dragStart": "dragStart"; "drag": "drag"; "dragEnd": "dragEnd"; "slotDragStart": "slotDragStart"; "slotDrag": "slotDrag"; "slotDragEnd": "slotDragEnd"; "pdfExport": "pdfExport"; "schedulerResize": "schedulerResize"; }, ["editDialogTemplate", "recurrenceButtonTextTemplate", "recurrenceHintTemplate", "toolbarTemplate", "views", "allDayEventTemplate", "eventTemplate", "timeSlotTemplate", "minorTimeHeaderTemplate", "majorTimeHeaderTemplate", "monthDaySlotTemplate", "multiWeekDaySlotTemplate", "dateHeaderTemplate", "allDaySlotTemplate", "groupHeaderTemplate", "agendaDateTemplate", "agendaTimeTemplate"], never, true, never>;
2862
+ static ɵcmp: i0.ɵɵComponentDeclaration<SchedulerComponent, "kendo-scheduler", never, { "selectedViewIndex": { "alias": "selectedViewIndex"; "required": false; }; "editable": { "alias": "editable"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "eventHeight": { "alias": "eventHeight"; "required": false; }; "columnWidth": { "alias": "columnWidth"; "required": false; }; "showWorkHours": { "alias": "showWorkHours"; "required": false; }; "startTime": { "alias": "startTime"; "required": false; }; "endTime": { "alias": "endTime"; "required": false; }; "workDayStart": { "alias": "workDayStart"; "required": false; }; "workDayEnd": { "alias": "workDayEnd"; "required": false; }; "workWeekStart": { "alias": "workWeekStart"; "required": false; }; "workWeekEnd": { "alias": "workWeekEnd"; "required": false; }; "weekStart": { "alias": "weekStart"; "required": false; }; "slotDuration": { "alias": "slotDuration"; "required": false; }; "slotDivisions": { "alias": "slotDivisions"; "required": false; }; "slotFill": { "alias": "slotFill"; "required": false; }; "allDaySlot": { "alias": "allDaySlot"; "required": false; }; "scrollTime": { "alias": "scrollTime"; "required": false; }; "group": { "alias": "group"; "required": false; }; "resources": { "alias": "resources"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "timezone": { "alias": "timezone"; "required": false; }; "events": { "alias": "events"; "required": false; }; "selectedDate": { "alias": "selectedDate"; "required": false; }; "modelFields": { "alias": "modelFields"; "required": false; }; "currentTimeMarker": { "alias": "currentTimeMarker"; "required": false; }; "highlightOngoingEvents": { "alias": "highlightOngoingEvents"; "required": false; }; "showToolbar": { "alias": "showToolbar"; "required": false; }; "showFooter": { "alias": "showFooter"; "required": false; }; "slotClass": { "alias": "slotClass"; "required": false; }; "eventClass": { "alias": "eventClass"; "required": false; }; "eventStyles": { "alias": "eventStyles"; "required": false; }; "hiddenDays": { "alias": "hiddenDays"; "required": false; }; "isSlotSelected": { "alias": "isSlotSelected"; "required": false; }; }, { "selectedViewIndexChange": "selectedViewIndexChange"; "navigate": "navigate"; "dateChange": "dateChange"; "slotClick": "slotClick"; "slotDblClick": "slotDblClick"; "create": "create"; "eventClick": "eventClick"; "eventDblClick": "eventDblClick"; "eventKeydown": "eventKeydown"; "cancel": "cancel"; "save": "save"; "remove": "remove"; "resizeStart": "resizeStart"; "resize": "resize"; "resizeEnd": "resizeEnd"; "dragStart": "dragStart"; "drag": "drag"; "dragEnd": "dragEnd"; "slotDragStart": "slotDragStart"; "slotDrag": "slotDrag"; "slotDragEnd": "slotDragEnd"; "pdfExport": "pdfExport"; "schedulerResize": "schedulerResize"; }, ["editDialogTemplate", "recurrenceButtonTextTemplate", "recurrenceSummaryTemplate", "toolbarTemplate", "views", "allDayEventTemplate", "eventTemplate", "timeSlotTemplate", "minorTimeHeaderTemplate", "majorTimeHeaderTemplate", "monthDaySlotTemplate", "multiWeekDaySlotTemplate", "dateHeaderTemplate", "allDaySlotTemplate", "groupHeaderTemplate", "agendaDateTemplate", "agendaTimeTemplate"], never, true, never>;
2863
2863
  }
2864
2864
 
2865
2865
  /**
@@ -4839,7 +4839,7 @@ declare class RecurrenceService {
4839
4839
  * (e.g. "Repeats every month on the second weekend day.") displayed as a hint in the recurrence editor.
4840
4840
  * This text is composed in English and is not localizable.
4841
4841
  */
4842
- get repeatsHintText(): string;
4842
+ get repeatsSummaryText(): string;
4843
4843
  private repeatsFrequencyText;
4844
4844
  private repeatsWeekDaysText;
4845
4845
  private repeatsMonthlyRepeatOnText;
@@ -4912,7 +4912,7 @@ declare class RecurrenceEditorComponent implements ControlValueAccessor, OnInit,
4912
4912
  /**
4913
4913
  * @hidden
4914
4914
  */
4915
- recurrenceHintTemplate: RecurrenceHintTemplateDirective;
4915
+ recurrenceSummaryTemplate: RecurrenceSummaryTemplateDirective;
4916
4916
  /**
4917
4917
  * @hidden
4918
4918
  */
@@ -4935,7 +4935,7 @@ declare class RecurrenceEditorComponent implements ControlValueAccessor, OnInit,
4935
4935
  /**
4936
4936
  * @hidden
4937
4937
  */
4938
- get repeatsHintText(): string;
4938
+ get repeatsSummaryText(): string;
4939
4939
  /**
4940
4940
  * @hidden
4941
4941
  */
@@ -4965,7 +4965,7 @@ declare class RecurrenceEditorComponent implements ControlValueAccessor, OnInit,
4965
4965
  registerOnTouched(fn: any): void;
4966
4966
  private emitChange;
4967
4967
  static ɵfac: i0.ɵɵFactoryDeclaration<RecurrenceEditorComponent, never>;
4968
- static ɵcmp: i0.ɵɵComponentDeclaration<RecurrenceEditorComponent, "kendo-recurrence-editor", ["kendoRecurrenceEditor"], { "start": { "alias": "start"; "required": false; }; "timezone": { "alias": "timezone"; "required": false; }; "weekStart": { "alias": "weekStart"; "required": false; }; "repeatEveryOptions": { "alias": "repeatEveryOptions"; "required": false; }; "endAfterOptions": { "alias": "endAfterOptions"; "required": false; }; "repeatOnOptions": { "alias": "repeatOnOptions"; "required": false; }; "endOnOptions": { "alias": "endOnOptions"; "required": false; }; "recurrenceHintTemplate": { "alias": "recurrenceHintTemplate"; "required": false; }; "recurrenceRule": { "alias": "recurrenceRule"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
4968
+ static ɵcmp: i0.ɵɵComponentDeclaration<RecurrenceEditorComponent, "kendo-recurrence-editor", ["kendoRecurrenceEditor"], { "start": { "alias": "start"; "required": false; }; "timezone": { "alias": "timezone"; "required": false; }; "weekStart": { "alias": "weekStart"; "required": false; }; "repeatEveryOptions": { "alias": "repeatEveryOptions"; "required": false; }; "endAfterOptions": { "alias": "endAfterOptions"; "required": false; }; "repeatOnOptions": { "alias": "repeatOnOptions"; "required": false; }; "endOnOptions": { "alias": "endOnOptions"; "required": false; }; "recurrenceSummaryTemplate": { "alias": "recurrenceSummaryTemplate"; "required": false; }; "recurrenceRule": { "alias": "recurrenceRule"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
4969
4969
  }
4970
4970
 
4971
4971
  /**
@@ -5313,7 +5313,7 @@ declare class ToolbarViewSelectorComponent implements OnDestroy {
5313
5313
  */
5314
5314
  declare class SchedulerModule {
5315
5315
  static ɵfac: i0.ɵɵFactoryDeclaration<SchedulerModule, never>;
5316
- static ɵmod: i0.ɵɵNgModuleDeclaration<SchedulerModule, never, [typeof SchedulerComponent, typeof SchedulerCustomMessagesComponent, typeof SchedulerViewDirective, typeof DataBindingDirective, typeof SlotSelectableDirective, typeof PDFComponent, typeof PDFCommandDirective, typeof ShortcutsDirective, typeof AgendaViewComponent, typeof DayViewComponent, typeof MonthViewComponent, typeof MultiDayViewComponent, typeof MultiWeekViewComponent, typeof TimelineMonthViewComponent, typeof TimelineViewComponent, typeof TimelineWeekViewComponent, typeof WeekViewComponent, typeof WorkWeekViewComponent, typeof YearViewComponent, typeof ReactiveEditingDirective, typeof RecurrenceButtonTextTemplateDirective, typeof RecurrenceEditorComponent, typeof RecurrenceHintTemplateDirective, typeof TimeZoneEditorComponent, typeof ToolbarNavigationComponent, typeof ToolbarTemplateDirective, typeof ToolbarViewSelectorComponent, typeof AgendaDateTemplateDirective, typeof AgendaTimeTemplateDirective, typeof AllDayEventTemplateDirective, typeof AllDaySlotTemplateDirective, typeof DateHeaderTemplateDirective, typeof EventTemplateDirective, typeof EditDialogTemplateDirective, typeof GroupHeaderTemplateDirective, typeof MajorTimeHeaderTemplateDirective, typeof MinorTimeHeaderTemplateDirective, typeof MonthDaySlotTemplateDirective, typeof MultiWeekDaySlotTemplateDirective, typeof TimeSlotTemplateDirective], [typeof SchedulerComponent, typeof SchedulerCustomMessagesComponent, typeof SchedulerViewDirective, typeof DataBindingDirective, typeof SlotSelectableDirective, typeof PDFComponent, typeof PDFCommandDirective, typeof ShortcutsDirective, typeof AgendaViewComponent, typeof DayViewComponent, typeof MonthViewComponent, typeof MultiDayViewComponent, typeof MultiWeekViewComponent, typeof TimelineMonthViewComponent, typeof TimelineViewComponent, typeof TimelineWeekViewComponent, typeof WeekViewComponent, typeof WorkWeekViewComponent, typeof YearViewComponent, typeof ReactiveEditingDirective, typeof RecurrenceButtonTextTemplateDirective, typeof RecurrenceEditorComponent, typeof RecurrenceHintTemplateDirective, typeof TimeZoneEditorComponent, typeof ToolbarNavigationComponent, typeof ToolbarTemplateDirective, typeof ToolbarViewSelectorComponent, typeof AgendaDateTemplateDirective, typeof AgendaTimeTemplateDirective, typeof AllDayEventTemplateDirective, typeof AllDaySlotTemplateDirective, typeof DateHeaderTemplateDirective, typeof EventTemplateDirective, typeof EditDialogTemplateDirective, typeof GroupHeaderTemplateDirective, typeof MajorTimeHeaderTemplateDirective, typeof MinorTimeHeaderTemplateDirective, typeof MonthDaySlotTemplateDirective, typeof MultiWeekDaySlotTemplateDirective, typeof TimeSlotTemplateDirective]>;
5316
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SchedulerModule, never, [typeof SchedulerComponent, typeof SchedulerCustomMessagesComponent, typeof SchedulerViewDirective, typeof DataBindingDirective, typeof SlotSelectableDirective, typeof PDFComponent, typeof PDFCommandDirective, typeof ShortcutsDirective, typeof AgendaViewComponent, typeof DayViewComponent, typeof MonthViewComponent, typeof MultiDayViewComponent, typeof MultiWeekViewComponent, typeof TimelineMonthViewComponent, typeof TimelineViewComponent, typeof TimelineWeekViewComponent, typeof WeekViewComponent, typeof WorkWeekViewComponent, typeof YearViewComponent, typeof ReactiveEditingDirective, typeof RecurrenceButtonTextTemplateDirective, typeof RecurrenceEditorComponent, typeof RecurrenceSummaryTemplateDirective, typeof TimeZoneEditorComponent, typeof ToolbarNavigationComponent, typeof ToolbarTemplateDirective, typeof ToolbarViewSelectorComponent, typeof AgendaDateTemplateDirective, typeof AgendaTimeTemplateDirective, typeof AllDayEventTemplateDirective, typeof AllDaySlotTemplateDirective, typeof DateHeaderTemplateDirective, typeof EventTemplateDirective, typeof EditDialogTemplateDirective, typeof GroupHeaderTemplateDirective, typeof MajorTimeHeaderTemplateDirective, typeof MinorTimeHeaderTemplateDirective, typeof MonthDaySlotTemplateDirective, typeof MultiWeekDaySlotTemplateDirective, typeof TimeSlotTemplateDirective], [typeof SchedulerComponent, typeof SchedulerCustomMessagesComponent, typeof SchedulerViewDirective, typeof DataBindingDirective, typeof SlotSelectableDirective, typeof PDFComponent, typeof PDFCommandDirective, typeof ShortcutsDirective, typeof AgendaViewComponent, typeof DayViewComponent, typeof MonthViewComponent, typeof MultiDayViewComponent, typeof MultiWeekViewComponent, typeof TimelineMonthViewComponent, typeof TimelineViewComponent, typeof TimelineWeekViewComponent, typeof WeekViewComponent, typeof WorkWeekViewComponent, typeof YearViewComponent, typeof ReactiveEditingDirective, typeof RecurrenceButtonTextTemplateDirective, typeof RecurrenceEditorComponent, typeof RecurrenceSummaryTemplateDirective, typeof TimeZoneEditorComponent, typeof ToolbarNavigationComponent, typeof ToolbarTemplateDirective, typeof ToolbarViewSelectorComponent, typeof AgendaDateTemplateDirective, typeof AgendaTimeTemplateDirective, typeof AllDayEventTemplateDirective, typeof AllDaySlotTemplateDirective, typeof DateHeaderTemplateDirective, typeof EventTemplateDirective, typeof EditDialogTemplateDirective, typeof GroupHeaderTemplateDirective, typeof MajorTimeHeaderTemplateDirective, typeof MinorTimeHeaderTemplateDirective, typeof MonthDaySlotTemplateDirective, typeof MultiWeekDaySlotTemplateDirective, typeof TimeSlotTemplateDirective]>;
5317
5317
  static ɵinj: i0.ɵɵInjectorDeclaration<SchedulerModule>;
5318
5318
  }
5319
5319
 
@@ -5407,7 +5407,7 @@ declare class EditDialogComponent implements OnDestroy {
5407
5407
  fields: any;
5408
5408
  editTemplate: EditDialogTemplateDirective;
5409
5409
  recurrenceButtonTextTemplate: RecurrenceButtonTextTemplateDirective;
5410
- recurrenceEditorHintTemplate: RecurrenceHintTemplateDirective;
5410
+ recurrenceEditorHintTemplate: RecurrenceSummaryTemplateDirective;
5411
5411
  get autoFocusedElement(): string;
5412
5412
  dialogTitle: string;
5413
5413
  isActive: boolean;
@@ -6897,7 +6897,7 @@ declare const KENDO_SCHEDULERPDF: readonly [typeof PDFComponent, typeof PDFComma
6897
6897
  * export class AppComponent {}
6898
6898
  * ```
6899
6899
  */
6900
- declare const KENDO_SCHEDULER: readonly [typeof SchedulerComponent, typeof SchedulerCustomMessagesComponent, typeof SchedulerViewDirective, typeof DataBindingDirective, typeof SlotSelectableDirective, typeof PDFComponent, typeof PDFCommandDirective, typeof ShortcutsDirective, typeof AgendaViewComponent, typeof DayViewComponent, typeof MonthViewComponent, typeof MultiDayViewComponent, typeof MultiWeekViewComponent, typeof TimelineMonthViewComponent, typeof TimelineViewComponent, typeof TimelineWeekViewComponent, typeof WeekViewComponent, typeof WorkWeekViewComponent, typeof YearViewComponent, typeof ReactiveEditingDirective, typeof RecurrenceButtonTextTemplateDirective, typeof RecurrenceEditorComponent, typeof RecurrenceHintTemplateDirective, typeof TimeZoneEditorComponent, typeof ToolbarNavigationComponent, typeof ToolbarTemplateDirective, typeof ToolbarViewSelectorComponent, typeof AgendaDateTemplateDirective, typeof AgendaTimeTemplateDirective, typeof AllDayEventTemplateDirective, typeof AllDaySlotTemplateDirective, typeof DateHeaderTemplateDirective, typeof EventTemplateDirective, typeof EditDialogTemplateDirective, typeof GroupHeaderTemplateDirective, typeof MajorTimeHeaderTemplateDirective, typeof MinorTimeHeaderTemplateDirective, typeof MonthDaySlotTemplateDirective, typeof MultiWeekDaySlotTemplateDirective, typeof TimeSlotTemplateDirective];
6900
+ declare const KENDO_SCHEDULER: readonly [typeof SchedulerComponent, typeof SchedulerCustomMessagesComponent, typeof SchedulerViewDirective, typeof DataBindingDirective, typeof SlotSelectableDirective, typeof PDFComponent, typeof PDFCommandDirective, typeof ShortcutsDirective, typeof AgendaViewComponent, typeof DayViewComponent, typeof MonthViewComponent, typeof MultiDayViewComponent, typeof MultiWeekViewComponent, typeof TimelineMonthViewComponent, typeof TimelineViewComponent, typeof TimelineWeekViewComponent, typeof WeekViewComponent, typeof WorkWeekViewComponent, typeof YearViewComponent, typeof ReactiveEditingDirective, typeof RecurrenceButtonTextTemplateDirective, typeof RecurrenceEditorComponent, typeof RecurrenceSummaryTemplateDirective, typeof TimeZoneEditorComponent, typeof ToolbarNavigationComponent, typeof ToolbarTemplateDirective, typeof ToolbarViewSelectorComponent, typeof AgendaDateTemplateDirective, typeof AgendaTimeTemplateDirective, typeof AllDayEventTemplateDirective, typeof AllDaySlotTemplateDirective, typeof DateHeaderTemplateDirective, typeof EventTemplateDirective, typeof EditDialogTemplateDirective, typeof GroupHeaderTemplateDirective, typeof MajorTimeHeaderTemplateDirective, typeof MinorTimeHeaderTemplateDirective, typeof MonthDaySlotTemplateDirective, typeof MultiWeekDaySlotTemplateDirective, typeof TimeSlotTemplateDirective];
6901
6901
 
6902
- export { AddEvent, AgendaDateTemplateDirective, AgendaTimeTemplateDirective, AgendaViewComponent, AllDayEventTemplateDirective, AllDaySlotTemplateDirective, BaseEditService, CancelEvent, CreateEvent, CrudOperation, DataBindingDirective, DateChangeEvent, DateHeaderTemplateDirective, DaySlotDirective, DayTimeSlotService, DayTimeViewItemComponent, DayViewComponent, DragEndEvent, DragEvent, DragStartEvent, EditDialogComponent, EditDialogTemplateDirective, EditEvent, EditEventBase, EditMode, EventClickEvent, EventKeydownEvent, EventTemplateDirective, FocusService, FocusableDirective, GroupHeaderTemplateDirective, HintContainerComponent, IsSlotSelectedArgs, KENDO_SCHEDULER, KENDO_SCHEDULERPDF, LoadingComponent, LocalizedMessagesDirective, MajorTimeHeaderTemplateDirective, MinorTimeHeaderTemplateDirective, MonthDaySlotTemplateDirective, MonthViewComponent, MoreEventsClickEvent, MultiDayViewComponent, MultiWeekDaySlotTemplateDirective, MultiWeekViewComponent, MultipleResourceEditorComponent, NavigateEvent, PDFCommandDirective, PDFComponent, PDFExportEvent, PDFModule, PDFService, ReactiveEditingDirective, RecurrenceButtonTextTemplateDirective, RecurrenceEditorComponent, RecurrenceEditorCustomMessagesComponent, RecurrenceEditorLocalizedMessagesDirective, RecurrenceEndRuleEditorComponent, RecurrenceFrequencyEditorComponent, RecurrenceHintTemplateDirective, RecurrenceIntervalEditorComponent, RecurrenceMonthlyYearlyEditorComponent, RecurrenceWeekdayRuleEditorComponent, RemoveEvent, RepeatOnRadioButtonDirective, RepeatPipe, ResizeEndEvent, ResizeEvent, ResizeHintComponent, ResizeStartEvent, ResourceIteratorPipe, SaveEvent, SchedulerComponent, SchedulerCustomMessagesComponent, SchedulerModule, SchedulerView, SchedulerViewDirective, ShortcutsDirective, SingleResourceEditorComponent, SlotClickEvent, SlotDragEndEvent, SlotDragEvent, SlotDragStartEvent, SlotSelectableDirective, SortPipe, TimeSlotDirective, TimeSlotTemplateDirective, TimeZoneEditorComponent, TimelineBase, TimelineMonthViewComponent, TimelineMultiDayViewComponent, TimelineViewComponent, TimelineWeekViewComponent, ToolbarNavigationComponent, ToolbarService, ToolbarTemplateDirective, ToolbarViewSelectorComponent, VIEW_EVENT_MAP, ViewContextService, ViewFooterComponent, ViewStateService, WeekViewComponent, WorkHoursFooterDirective, WorkWeekViewComponent, YearViewComponent, YearViewInternalComponent };
6902
+ export { AddEvent, AgendaDateTemplateDirective, AgendaTimeTemplateDirective, AgendaViewComponent, AllDayEventTemplateDirective, AllDaySlotTemplateDirective, BaseEditService, CancelEvent, CreateEvent, CrudOperation, DataBindingDirective, DateChangeEvent, DateHeaderTemplateDirective, DaySlotDirective, DayTimeSlotService, DayTimeViewItemComponent, DayViewComponent, DragEndEvent, DragEvent, DragStartEvent, EditDialogComponent, EditDialogTemplateDirective, EditEvent, EditEventBase, EditMode, EventClickEvent, EventKeydownEvent, EventTemplateDirective, FocusService, FocusableDirective, GroupHeaderTemplateDirective, HintContainerComponent, IsSlotSelectedArgs, KENDO_SCHEDULER, KENDO_SCHEDULERPDF, LoadingComponent, LocalizedMessagesDirective, MajorTimeHeaderTemplateDirective, MinorTimeHeaderTemplateDirective, MonthDaySlotTemplateDirective, MonthViewComponent, MoreEventsClickEvent, MultiDayViewComponent, MultiWeekDaySlotTemplateDirective, MultiWeekViewComponent, MultipleResourceEditorComponent, NavigateEvent, PDFCommandDirective, PDFComponent, PDFExportEvent, PDFModule, PDFService, ReactiveEditingDirective, RecurrenceButtonTextTemplateDirective, RecurrenceEditorComponent, RecurrenceEditorCustomMessagesComponent, RecurrenceEditorLocalizedMessagesDirective, RecurrenceEndRuleEditorComponent, RecurrenceFrequencyEditorComponent, RecurrenceIntervalEditorComponent, RecurrenceMonthlyYearlyEditorComponent, RecurrenceSummaryTemplateDirective, RecurrenceWeekdayRuleEditorComponent, RemoveEvent, RepeatOnRadioButtonDirective, RepeatPipe, ResizeEndEvent, ResizeEvent, ResizeHintComponent, ResizeStartEvent, ResourceIteratorPipe, SaveEvent, SchedulerComponent, SchedulerCustomMessagesComponent, SchedulerModule, SchedulerView, SchedulerViewDirective, ShortcutsDirective, SingleResourceEditorComponent, SlotClickEvent, SlotDragEndEvent, SlotDragEvent, SlotDragStartEvent, SlotSelectableDirective, SortPipe, TimeSlotDirective, TimeSlotTemplateDirective, TimeZoneEditorComponent, TimelineBase, TimelineMonthViewComponent, TimelineMultiDayViewComponent, TimelineViewComponent, TimelineWeekViewComponent, ToolbarNavigationComponent, ToolbarService, ToolbarTemplateDirective, ToolbarViewSelectorComponent, VIEW_EVENT_MAP, ViewContextService, ViewFooterComponent, ViewStateService, WeekViewComponent, WorkHoursFooterDirective, WorkWeekViewComponent, YearViewComponent, YearViewInternalComponent };
6903
6903
  export type { CreateFormGroupArgs, CurrentTimeSettings, DatePickerOptions, DateRange, EditEventArgs, EditableSettings, EventStyleArgs, FocusNext, FocusPosition, FocusPrev, FocusToolbar, Group, NavigationAction, Next, NumericTextBoxOptions, OngoingEventsSettings, Prev, Resource, SchedulerEvent, SchedulerModelFields, SchedulerSlot, ScrollTime, SelectDate, ShowDate, SlotClassArgs, SlotRange$2 as SlotRange, Today, ToggleBusinessHours, ToolbarContext, ViewChange, ViewItem$1 as ViewItem };
@@ -7,7 +7,7 @@ export const packageMetadata = {
7
7
  "productCodes": [
8
8
  "KENDOUIANGULAR"
9
9
  ],
10
- "publishDate": 1785940557,
11
- "version": "25.0.0-develop.23",
10
+ "publishDate": 1786102910,
11
+ "version": "25.0.0-develop.25",
12
12
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
13
13
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-scheduler",
3
- "version": "25.0.0-develop.23",
3
+ "version": "25.0.0-develop.25",
4
4
  "description": "Kendo UI Scheduler Angular - Outlook or Google-style angular scheduler calendar. Full-featured and customizable embedded scheduling from the creator developers trust for professional UI components.",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -41,7 +41,7 @@
41
41
  "package": {
42
42
  "productName": "Kendo UI for Angular",
43
43
  "productCode": "KENDOUIANGULAR",
44
- "publishDate": 1785940557,
44
+ "publishDate": 1786102910,
45
45
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
46
46
  }
47
47
  },
@@ -54,23 +54,23 @@
54
54
  "@progress/kendo-data-query": "^1.7.3",
55
55
  "@progress/kendo-drawing": "^1.25.0",
56
56
  "@progress/kendo-licensing": "^1.11.0",
57
- "@progress/kendo-angular-tooltip": "25.0.0-develop.23",
58
- "@progress/kendo-angular-buttons": "25.0.0-develop.23",
59
- "@progress/kendo-angular-common": "25.0.0-develop.23",
60
- "@progress/kendo-angular-dateinputs": "25.0.0-develop.23",
61
- "@progress/kendo-angular-dialog": "25.0.0-develop.23",
62
- "@progress/kendo-angular-dropdowns": "25.0.0-develop.23",
63
- "@progress/kendo-angular-icons": "25.0.0-develop.23",
64
- "@progress/kendo-angular-inputs": "25.0.0-develop.23",
65
- "@progress/kendo-angular-intl": "25.0.0-develop.23",
66
- "@progress/kendo-angular-l10n": "25.0.0-develop.23",
67
- "@progress/kendo-angular-label": "25.0.0-develop.23",
68
- "@progress/kendo-angular-popup": "25.0.0-develop.23",
57
+ "@progress/kendo-angular-tooltip": "25.0.0-develop.25",
58
+ "@progress/kendo-angular-buttons": "25.0.0-develop.25",
59
+ "@progress/kendo-angular-common": "25.0.0-develop.25",
60
+ "@progress/kendo-angular-dateinputs": "25.0.0-develop.25",
61
+ "@progress/kendo-angular-dialog": "25.0.0-develop.25",
62
+ "@progress/kendo-angular-dropdowns": "25.0.0-develop.25",
63
+ "@progress/kendo-angular-icons": "25.0.0-develop.25",
64
+ "@progress/kendo-angular-inputs": "25.0.0-develop.25",
65
+ "@progress/kendo-angular-intl": "25.0.0-develop.25",
66
+ "@progress/kendo-angular-l10n": "25.0.0-develop.25",
67
+ "@progress/kendo-angular-label": "25.0.0-develop.25",
68
+ "@progress/kendo-angular-popup": "25.0.0-develop.25",
69
69
  "rxjs": "^6.5.3 || ^7.0.0"
70
70
  },
71
71
  "dependencies": {
72
72
  "tslib": "^2.3.1",
73
- "@progress/kendo-angular-schematics": "25.0.0-develop.23",
73
+ "@progress/kendo-angular-schematics": "25.0.0-develop.25",
74
74
  "@progress/kendo-date-math": "^1.3.2",
75
75
  "@progress/kendo-draggable": "^3.0.2",
76
76
  "@progress/kendo-file-saver": "^1.0.7",
@@ -9,10 +9,10 @@ const schematics_1 = require("@angular-devkit/schematics");
9
9
  function default_1(options) {
10
10
  const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'SchedulerModule', package: 'scheduler', peerDependencies: {
11
11
  // peer deps of the dropdowns
12
- '@progress/kendo-angular-treeview': '25.0.0-develop.23',
13
- '@progress/kendo-angular-navigation': '25.0.0-develop.23',
12
+ '@progress/kendo-angular-treeview': '25.0.0-develop.25',
13
+ '@progress/kendo-angular-navigation': '25.0.0-develop.25',
14
14
  // peer dependency of kendo-angular-inputs
15
- '@progress/kendo-angular-dialog': '25.0.0-develop.23',
15
+ '@progress/kendo-angular-dialog': '25.0.0-develop.25',
16
16
  // peer dependency of kendo-angular-icons
17
17
  '@progress/kendo-svg-icons': '^4.0.0'
18
18
  } });