/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { ChangeDetectorRef } from '@angular/core'; import { LocalizationService } from '@progress/kendo-angular-l10n'; import { MultiDayViewBase } from './multi-day-view-base'; import { ViewContextService } from '../view-context.service'; import { ViewStateService } from '../view-state.service'; import { AllDaySlotTemplateDirective, AllDayEventTemplateDirective } from '../templates'; import { Day } from '@progress/kendo-date-math'; import * as i0 from "@angular/core"; /** * Represents the component that renders the **Day** view in the Scheduler. * * @example * ```html * * * * ``` */ export declare class DayViewComponent extends MultiDayViewBase { /** * @hidden */ get title(): string; /** * Sets the long-date format for the selected date in the Scheduler toolbar. * For more information, see [Parsing and Formatting Dates and Numbers](https://www.telerik.com/kendo-angular-ui/components/globalization/internationalization/parsing-and-formatting#date-formatting). * @default '{0:D}' */ set selectedDateFormat(value: string); get selectedDateFormat(): string; /** * Sets the short-date format for the selected date in the Scheduler toolbar. * For more information, see [Parsing and Formatting Dates and Numbers](https://www.telerik.com/kendo-angular-ui/components/globalization/internationalization/parsing-and-formatting#date-formatting). * @default '{0:d}' */ set selectedShortDateFormat(value: string); get selectedShortDateFormat(): string; /** * @hidden */ allDaySlotTemplate: AllDaySlotTemplateDirective; /** * @hidden */ allDayEventTemplate: AllDayEventTemplateDirective; /** * The invariant name for this view. * @default 'day' */ readonly name: string; /** * @hidden * Used to override the hiddenDays as this options is not applicable for Day view. */ set hiddenDays(_hiddenDays: Day[]); private _selectedDateFormat; private _selectedShortDateFormat; constructor(localization: LocalizationService, changeDetector: ChangeDetectorRef, viewContext: ViewContextService, viewState: ViewStateService); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }