@progress/kendo-angular-scheduler 25.0.0-develop.24 → 25.0.0-develop.26

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: 1785946709,
47
- version: '25.0.0-develop.24',
46
+ publishDate: 1786117253,
47
+ version: '25.0.0-develop.26',
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;
@@ -6019,7 +6019,8 @@ class EditDialogComponent {
6019
6019
  }
6020
6020
  onDelete(e) {
6021
6021
  e.preventDefault();
6022
- this.editService.removeEvent(this.editedEvent, this.editMode);
6022
+ const mode = this.hadRecurrenceRule ? this.editMode : EditMode.Event;
6023
+ this.editService.removeEvent(this.editedEvent, mode);
6023
6024
  this.onClose();
6024
6025
  }
6025
6026
  onStartDateChange(value) {
@@ -6462,7 +6463,7 @@ class EditDialogComponent {
6462
6463
  [start]="recurrenceStart"
6463
6464
  [timezone]="eventTimezone"
6464
6465
  [weekStart]="weekStart"
6465
- [recurrenceHintTemplate]="recurrenceEditorHintTemplate"
6466
+ [recurrenceSummaryTemplate]="recurrenceEditorHintTemplate"
6466
6467
  [recurrenceRule]="currentRule"
6467
6468
  ></kendo-recurrence-editor>
6468
6469
  </div>
@@ -6485,7 +6486,7 @@ class EditDialogComponent {
6485
6486
  </kendo-dialog>
6486
6487
  }
6487
6488
  }
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" }] });
6489
+ `, 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
6490
  }
6490
6491
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.26", ngImport: i0, type: EditDialogComponent, decorators: [{
6491
6492
  type: Component,
@@ -6704,7 +6705,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.26", ngImpo
6704
6705
  [start]="recurrenceStart"
6705
6706
  [timezone]="eventTimezone"
6706
6707
  [weekStart]="weekStart"
6707
- [recurrenceHintTemplate]="recurrenceEditorHintTemplate"
6708
+ [recurrenceSummaryTemplate]="recurrenceEditorHintTemplate"
6708
6709
  [recurrenceRule]="currentRule"
6709
6710
  ></kendo-recurrence-editor>
6710
6711
  </div>
@@ -6892,13 +6893,13 @@ class ToolbarViewSelectorComponent {
6892
6893
  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
6894
  @if (showDropdown) {
6894
6895
  @if (focusIndex !== null) {
6895
- <kendo-splitbutton [fillMode]="'flat'" class="k-toolbar-menu-button" [data]="ctxViews" textField="title" [kendoSchedulerFocusIndex]="focusIndex" containerType="toolbar" (itemClick)="onChange($event)">
6896
+ <kendo-dropdownbutton [fillMode]="'flat'" [arrowIcon]="true" [buttonClass]="'k-toolbar-menu-button'" [data]="ctxViews" textField="title" [kendoSchedulerFocusIndex]="focusIndex" containerType="toolbar" (itemClick)="onChange($event)">
6896
6897
  {{ ctx.selectedView?.title }}
6897
- </kendo-splitbutton>
6898
+ </kendo-dropdownbutton>
6898
6899
  } @else {
6899
- <kendo-splitbutton [fillMode]="'flat'" class="k-toolbar-menu-button" [data]="ctxViews" textField="title" (itemClick)="onChange($event)">
6900
+ <kendo-dropdownbutton [fillMode]="'flat'" [arrowIcon]="true" [buttonClass]="'k-toolbar-menu-button'" [data]="ctxViews" textField="title" (itemClick)="onChange($event)">
6900
6901
  {{ ctx.selectedView?.title }}
6901
- </kendo-splitbutton>
6902
+ </kendo-dropdownbutton>
6902
6903
  }
6903
6904
  } @else {
6904
6905
  @if (focusIndex !== null) {
@@ -6919,7 +6920,7 @@ class ToolbarViewSelectorComponent {
6919
6920
  </kendo-segmented-control>
6920
6921
  }
6921
6922
  }
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"] }] });
6923
+ `, 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
6924
  }
6924
6925
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.26", ngImport: i0, type: ToolbarViewSelectorComponent, decorators: [{
6925
6926
  type: Component,
@@ -6928,13 +6929,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.26", ngImpo
6928
6929
  template: `
6929
6930
  @if (showDropdown) {
6930
6931
  @if (focusIndex !== null) {
6931
- <kendo-splitbutton [fillMode]="'flat'" class="k-toolbar-menu-button" [data]="ctxViews" textField="title" [kendoSchedulerFocusIndex]="focusIndex" containerType="toolbar" (itemClick)="onChange($event)">
6932
+ <kendo-dropdownbutton [fillMode]="'flat'" [arrowIcon]="true" [buttonClass]="'k-toolbar-menu-button'" [data]="ctxViews" textField="title" [kendoSchedulerFocusIndex]="focusIndex" containerType="toolbar" (itemClick)="onChange($event)">
6932
6933
  {{ ctx.selectedView?.title }}
6933
- </kendo-splitbutton>
6934
+ </kendo-dropdownbutton>
6934
6935
  } @else {
6935
- <kendo-splitbutton [fillMode]="'flat'" class="k-toolbar-menu-button" [data]="ctxViews" textField="title" (itemClick)="onChange($event)">
6936
+ <kendo-dropdownbutton [fillMode]="'flat'" [arrowIcon]="true" [buttonClass]="'k-toolbar-menu-button'" [data]="ctxViews" textField="title" (itemClick)="onChange($event)">
6936
6937
  {{ ctx.selectedView?.title }}
6937
- </kendo-splitbutton>
6938
+ </kendo-dropdownbutton>
6938
6939
  }
6939
6940
  } @else {
6940
6941
  @if (focusIndex !== null) {
@@ -6957,7 +6958,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.26", ngImpo
6957
6958
  }
6958
6959
  `,
6959
6960
  standalone: true,
6960
- imports: [FocusableDirective, SegmentedControlComponent, SplitButtonComponent]
6961
+ imports: [FocusableDirective, SegmentedControlComponent, DropDownButtonComponent]
6961
6962
  }]
6962
6963
  }], ctorParameters: () => [{ type: ToolbarService }, { type: i2.LocalizationService }], propDecorators: { displayMode: [{
6963
6964
  type: Input
@@ -8739,7 +8740,7 @@ class SchedulerComponent {
8739
8740
  /**
8740
8741
  * @hidden
8741
8742
  */
8742
- recurrenceHintTemplate;
8743
+ recurrenceSummaryTemplate;
8743
8744
  /**
8744
8745
  * @hidden
8745
8746
  */
@@ -9444,7 +9445,7 @@ class SchedulerComponent {
9444
9445
  ViewStateService,
9445
9446
  PDFService,
9446
9447
  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: `
9448
+ ], 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
9449
  <ng-container kendoSchedulerLocalizedMessages
9449
9450
  i18n-allEvents="kendo.scheduler.allEvents|The All events text displayed in the timeline views when there is no vertical grouping."
9450
9451
  allEvents="All events"
@@ -9665,8 +9666,8 @@ class SchedulerComponent {
9665
9666
  i18n-recurrenceEditorWeeklyRepeatEvery="kendo.scheduler.recurrenceEditorWeeklyRepeatEvery|The text similar to 'Repeats every' displayed in the Scheduler recurrence editor."
9666
9667
  recurrenceEditorWeeklyRepeatEvery='Repeats every'
9667
9668
 
9668
- i18n-recurrenceEditorWeeklyRepeatOn="kendo.scheduler.recurrenceEditorWeeklyRepeatOn|The text similar to 'Repeat on' displayed in the Scheduler recurrence editor."
9669
- recurrenceEditorWeeklyRepeatOn='Repeat on'
9669
+ i18n-recurrenceEditorWeeklyRepeatOn="kendo.scheduler.recurrenceEditorWeeklyRepeatOn|The text similar to 'On' displayed in the Scheduler recurrence editor."
9670
+ recurrenceEditorWeeklyRepeatOn='On'
9670
9671
 
9671
9672
  i18n-recurrenceEditorMonthlyDay="kendo.scheduler.recurrenceEditorMonthlyDay|The text similar to 'Day' displayed in the Scheduler recurrence editor."
9672
9673
  recurrenceEditorMonthlyDay='Day'
@@ -9677,8 +9678,8 @@ class SchedulerComponent {
9677
9678
  i18n-recurrenceEditorMonthlyRepeatEvery="kendo.scheduler.recurrenceEditorMonthlyRepeatEvery|The text similar to 'Repeats every' displayed in the Scheduler recurrence editor."
9678
9679
  recurrenceEditorMonthlyRepeatEvery='Repeats every'
9679
9680
 
9680
- i18n-recurrenceEditorMonthlyRepeatOn="kendo.scheduler.recurrenceEditorMonthlyRepeatOn|The text similar to 'Repeat on' displayed in the Scheduler recurrence editor."
9681
- recurrenceEditorMonthlyRepeatOn='Repeat on'
9681
+ i18n-recurrenceEditorMonthlyRepeatOn="kendo.scheduler.recurrenceEditorMonthlyRepeatOn|The text similar to 'On' displayed in the Scheduler recurrence editor."
9682
+ recurrenceEditorMonthlyRepeatOn='On'
9682
9683
 
9683
9684
  i18n-recurrenceEditorYearlyOf="kendo.scheduler.recurrenceEditorYearlyOf|The text similar to 'of' displayed in the Scheduler recurrence editor."
9684
9685
  recurrenceEditorYearlyOf='of'
@@ -9686,8 +9687,8 @@ class SchedulerComponent {
9686
9687
  i18n-recurrenceEditorYearlyRepeatEvery="kendo.scheduler.recurrenceEditorYearlyRepeatEvery|The text similar to 'Repeats every' displayed in the Scheduler recurrence editor."
9687
9688
  recurrenceEditorYearlyRepeatEvery='Repeats every'
9688
9689
 
9689
- i18n-recurrenceEditorYearlyRepeatOn="kendo.scheduler.recurrenceEditorYearlyRepeatOn|The text similar to 'Repeat on' displayed in the Scheduler recurrence editor."
9690
- recurrenceEditorYearlyRepeatOn='Repeat on'
9690
+ i18n-recurrenceEditorYearlyRepeatOn="kendo.scheduler.recurrenceEditorYearlyRepeatOn|The text similar to 'On' displayed in the Scheduler recurrence editor."
9691
+ recurrenceEditorYearlyRepeatOn='On'
9691
9692
 
9692
9693
  i18n-recurrenceEditorYearlyInterval="kendo.scheduler.recurrenceEditorYearlyInterval|The text similar to 'year(s)' displayed in the Scheduler recurrence editor."
9693
9694
  recurrenceEditorYearlyInterval='year(s)'
@@ -9819,7 +9820,7 @@ class SchedulerComponent {
9819
9820
  [resources]="resources"
9820
9821
  [editTemplate]="editDialogTemplate"
9821
9822
  [recurrenceButtonTextTemplate]="recurrenceButtonTextTemplate"
9822
- [recurrenceEditorHintTemplate]="recurrenceHintTemplate"
9823
+ [recurrenceEditorHintTemplate]="recurrenceSummaryTemplate"
9823
9824
  [timezone]="timezone"
9824
9825
  [weekStart]="weekStart"
9825
9826
  [fields]="modelFields"
@@ -10087,8 +10088,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.26", ngImpo
10087
10088
  i18n-recurrenceEditorWeeklyRepeatEvery="kendo.scheduler.recurrenceEditorWeeklyRepeatEvery|The text similar to 'Repeats every' displayed in the Scheduler recurrence editor."
10088
10089
  recurrenceEditorWeeklyRepeatEvery='Repeats every'
10089
10090
 
10090
- i18n-recurrenceEditorWeeklyRepeatOn="kendo.scheduler.recurrenceEditorWeeklyRepeatOn|The text similar to 'Repeat on' displayed in the Scheduler recurrence editor."
10091
- recurrenceEditorWeeklyRepeatOn='Repeat on'
10091
+ i18n-recurrenceEditorWeeklyRepeatOn="kendo.scheduler.recurrenceEditorWeeklyRepeatOn|The text similar to 'On' displayed in the Scheduler recurrence editor."
10092
+ recurrenceEditorWeeklyRepeatOn='On'
10092
10093
 
10093
10094
  i18n-recurrenceEditorMonthlyDay="kendo.scheduler.recurrenceEditorMonthlyDay|The text similar to 'Day' displayed in the Scheduler recurrence editor."
10094
10095
  recurrenceEditorMonthlyDay='Day'
@@ -10099,8 +10100,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.26", ngImpo
10099
10100
  i18n-recurrenceEditorMonthlyRepeatEvery="kendo.scheduler.recurrenceEditorMonthlyRepeatEvery|The text similar to 'Repeats every' displayed in the Scheduler recurrence editor."
10100
10101
  recurrenceEditorMonthlyRepeatEvery='Repeats every'
10101
10102
 
10102
- i18n-recurrenceEditorMonthlyRepeatOn="kendo.scheduler.recurrenceEditorMonthlyRepeatOn|The text similar to 'Repeat on' displayed in the Scheduler recurrence editor."
10103
- recurrenceEditorMonthlyRepeatOn='Repeat on'
10103
+ i18n-recurrenceEditorMonthlyRepeatOn="kendo.scheduler.recurrenceEditorMonthlyRepeatOn|The text similar to 'On' displayed in the Scheduler recurrence editor."
10104
+ recurrenceEditorMonthlyRepeatOn='On'
10104
10105
 
10105
10106
  i18n-recurrenceEditorYearlyOf="kendo.scheduler.recurrenceEditorYearlyOf|The text similar to 'of' displayed in the Scheduler recurrence editor."
10106
10107
  recurrenceEditorYearlyOf='of'
@@ -10108,8 +10109,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.26", ngImpo
10108
10109
  i18n-recurrenceEditorYearlyRepeatEvery="kendo.scheduler.recurrenceEditorYearlyRepeatEvery|The text similar to 'Repeats every' displayed in the Scheduler recurrence editor."
10109
10110
  recurrenceEditorYearlyRepeatEvery='Repeats every'
10110
10111
 
10111
- i18n-recurrenceEditorYearlyRepeatOn="kendo.scheduler.recurrenceEditorYearlyRepeatOn|The text similar to 'Repeat on' displayed in the Scheduler recurrence editor."
10112
- recurrenceEditorYearlyRepeatOn='Repeat on'
10112
+ i18n-recurrenceEditorYearlyRepeatOn="kendo.scheduler.recurrenceEditorYearlyRepeatOn|The text similar to 'On' displayed in the Scheduler recurrence editor."
10113
+ recurrenceEditorYearlyRepeatOn='On'
10113
10114
 
10114
10115
  i18n-recurrenceEditorYearlyInterval="kendo.scheduler.recurrenceEditorYearlyInterval|The text similar to 'year(s)' displayed in the Scheduler recurrence editor."
10115
10116
  recurrenceEditorYearlyInterval='year(s)'
@@ -10241,7 +10242,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.26", ngImpo
10241
10242
  [resources]="resources"
10242
10243
  [editTemplate]="editDialogTemplate"
10243
10244
  [recurrenceButtonTextTemplate]="recurrenceButtonTextTemplate"
10244
- [recurrenceEditorHintTemplate]="recurrenceHintTemplate"
10245
+ [recurrenceEditorHintTemplate]="recurrenceSummaryTemplate"
10245
10246
  [timezone]="timezone"
10246
10247
  [weekStart]="weekStart"
10247
10248
  [fields]="modelFields"
@@ -10396,9 +10397,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.26", ngImpo
10396
10397
  }], recurrenceButtonTextTemplate: [{
10397
10398
  type: ContentChild,
10398
10399
  args: [RecurrenceButtonTextTemplateDirective, { static: false }]
10399
- }], recurrenceHintTemplate: [{
10400
+ }], recurrenceSummaryTemplate: [{
10400
10401
  type: ContentChild,
10401
- args: [RecurrenceHintTemplateDirective, { static: false }]
10402
+ args: [RecurrenceSummaryTemplateDirective, { static: false }]
10402
10403
  }], toolbarTemplate: [{
10403
10404
  type: ContentChild,
10404
10405
  args: [ToolbarTemplateDirective, { static: false }]
@@ -22644,7 +22645,7 @@ const KENDO_SCHEDULER = [
22644
22645
  ReactiveEditingDirective,
22645
22646
  RecurrenceButtonTextTemplateDirective,
22646
22647
  RecurrenceEditorComponent,
22647
- RecurrenceHintTemplateDirective,
22648
+ RecurrenceSummaryTemplateDirective,
22648
22649
  TimeZoneEditorComponent,
22649
22650
  // toolbar
22650
22651
  ToolbarNavigationComponent,
@@ -22687,7 +22688,7 @@ const KENDO_SCHEDULER = [
22687
22688
  */
22688
22689
  class SchedulerModule {
22689
22690
  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] });
22691
+ 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
22692
  static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.26", ngImport: i0, type: SchedulerModule, providers: [
22692
22693
  ToolbarService,
22693
22694
  ViewContextService,
@@ -23143,5 +23144,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.26", ngImpo
23143
23144
  * Generated bundle index. Do not edit.
23144
23145
  */
23145
23146
 
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 };
23147
+ 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
23148
 
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": 1785946709,
11
- "version": "25.0.0-develop.24",
10
+ "publishDate": 1786117253,
11
+ "version": "25.0.0-develop.26",
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.24",
3
+ "version": "25.0.0-develop.26",
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": 1785946709,
44
+ "publishDate": 1786117253,
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.24",
58
- "@progress/kendo-angular-buttons": "25.0.0-develop.24",
59
- "@progress/kendo-angular-common": "25.0.0-develop.24",
60
- "@progress/kendo-angular-dateinputs": "25.0.0-develop.24",
61
- "@progress/kendo-angular-dialog": "25.0.0-develop.24",
62
- "@progress/kendo-angular-dropdowns": "25.0.0-develop.24",
63
- "@progress/kendo-angular-icons": "25.0.0-develop.24",
64
- "@progress/kendo-angular-inputs": "25.0.0-develop.24",
65
- "@progress/kendo-angular-intl": "25.0.0-develop.24",
66
- "@progress/kendo-angular-l10n": "25.0.0-develop.24",
67
- "@progress/kendo-angular-label": "25.0.0-develop.24",
68
- "@progress/kendo-angular-popup": "25.0.0-develop.24",
57
+ "@progress/kendo-angular-tooltip": "25.0.0-develop.26",
58
+ "@progress/kendo-angular-buttons": "25.0.0-develop.26",
59
+ "@progress/kendo-angular-common": "25.0.0-develop.26",
60
+ "@progress/kendo-angular-dateinputs": "25.0.0-develop.26",
61
+ "@progress/kendo-angular-dialog": "25.0.0-develop.26",
62
+ "@progress/kendo-angular-dropdowns": "25.0.0-develop.26",
63
+ "@progress/kendo-angular-icons": "25.0.0-develop.26",
64
+ "@progress/kendo-angular-inputs": "25.0.0-develop.26",
65
+ "@progress/kendo-angular-intl": "25.0.0-develop.26",
66
+ "@progress/kendo-angular-l10n": "25.0.0-develop.26",
67
+ "@progress/kendo-angular-label": "25.0.0-develop.26",
68
+ "@progress/kendo-angular-popup": "25.0.0-develop.26",
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.24",
73
+ "@progress/kendo-angular-schematics": "25.0.0-develop.26",
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.24',
13
- '@progress/kendo-angular-navigation': '25.0.0-develop.24',
12
+ '@progress/kendo-angular-treeview': '25.0.0-develop.26',
13
+ '@progress/kendo-angular-navigation': '25.0.0-develop.26',
14
14
  // peer dependency of kendo-angular-inputs
15
- '@progress/kendo-angular-dialog': '25.0.0-develop.24',
15
+ '@progress/kendo-angular-dialog': '25.0.0-develop.26',
16
16
  // peer dependency of kendo-angular-icons
17
17
  '@progress/kendo-svg-icons': '^4.0.0'
18
18
  } });