/*! * devextreme-angular * Version: 25.2.6 * Build date: Mon Mar 30 2026 * * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED * * This software may be modified and distributed under the terms * of the MIT license. See the LICENSE file in the root of the project for details. * * https://github.com/DevExpress/DevExtreme */ import { TransferState, ElementRef, NgZone, OnDestroy, EventEmitter, OnChanges, DoCheck, SimpleChanges, QueryList } from '@angular/core'; import dxScheduler from 'devextreme/ui/scheduler'; import dxSortable from 'devextreme/ui/sortable'; import dxDraggable from 'devextreme/ui/draggable'; import DataSource from 'devextreme/data/data_source'; import { AllDayPanelMode, ViewType, dxSchedulerAppointment, AppointmentFormProperties, CellAppointmentsLimit, AppointmentAddedEvent, AppointmentAddingEvent, AppointmentClickEvent, AppointmentContextMenuEvent, AppointmentDblClickEvent, AppointmentDeletedEvent, AppointmentDeletingEvent, AppointmentFormOpeningEvent, AppointmentRenderedEvent, AppointmentTooltipShowingEvent, AppointmentUpdatedEvent, AppointmentUpdatingEvent, CellClickEvent, CellContextMenuEvent, ContentReadyEvent, DisposingEvent, InitializedEvent, OptionChangedEvent, RecurrenceEditMode, dxSchedulerScrolling, dxSchedulerToolbar } from 'devextreme/ui/scheduler'; import { event } from 'devextreme/events/events.types'; import { DataSourceOptions } from 'devextreme/data/data_source'; import { Store } from 'devextreme/data/store'; import { FirstDayOfWeek, Orientation } from 'devextreme/common'; import DxScheduler from 'devextreme/ui/scheduler'; import { DxComponent, DxTemplateHost, NestedOptionHost, IterableDifferHelper, WatcherHelper, CollectionNestedOption } from 'devextreme-angular/core'; import type * as DxSchedulerTypes from "devextreme/ui/scheduler_types"; import * as i0 from "@angular/core"; import * as i1 from "devextreme-angular/ui/nested"; import * as i2 from "devextreme-angular/ui/scheduler/nested"; import * as i3 from "devextreme-angular/core"; /** * The Scheduler is a UI component that represents scheduled data and allows a user to manage and edit it. */ export declare class DxSchedulerComponent extends DxComponent implements OnDestroy, OnChanges, DoCheck { private _watcherHelper; private _idh; set _validationRulesContentChildren(value: QueryList); set _itemsContentChildren(value: QueryList); set _resourcesContentChildren(value: QueryList); set _tabsContentChildren(value: QueryList); set _viewsContentChildren(value: QueryList); instance: DxScheduler; /** * Specifies the shortcut key that sets focus on the UI component. */ get accessKey(): string | undefined; set accessKey(value: string | undefined); /** * Specifies whether the UI component adapts to small screens. */ get adaptivityEnabled(): boolean; set adaptivityEnabled(value: boolean); /** * Specifies the name of the data source item field whose value defines whether or not the corresponding appointment is an all-day appointment. */ get allDayExpr(): string; set allDayExpr(value: string); /** * Specifies the display mode for the All day panel. */ get allDayPanelMode(): AllDayPanelMode; set allDayPanelMode(value: AllDayPanelMode); /** * Specifies a custom template for cell overflow indicators. */ get appointmentCollectorTemplate(): any; set appointmentCollectorTemplate(value: any); /** * Configures appointment reordering using drag and drop gestures. */ get appointmentDragging(): { autoScroll?: boolean; data?: any | undefined; group?: string | undefined; onAdd?: ((e: { component: dxScheduler; event: event; fromComponent: dxSortable | dxDraggable; fromData: any; itemData: any; itemElement: any; toComponent: dxSortable | dxDraggable; toData: any; }) => void); onDragEnd?: ((e: { cancel: boolean; component: dxScheduler; event: event; fromComponent: dxSortable | dxDraggable; fromData: any; itemData: any; itemElement: any; toComponent: dxSortable | dxDraggable; toData: any; toItemData: any; }) => void); onDragMove?: ((e: { cancel: boolean; component: dxScheduler; event: event; fromComponent: dxSortable | dxDraggable; fromData: any; itemData: any; itemElement: any; toComponent: dxSortable | dxDraggable; toData: any; }) => void); onDragStart?: ((e: { cancel: boolean; component: dxScheduler; event: event; fromData: any; itemData: any; itemElement: any; }) => void); onRemove?: ((e: { component: dxScheduler; event: event; fromComponent: dxSortable | dxDraggable; fromData: any; itemData: any; itemElement: any; toComponent: dxSortable | dxDraggable; }) => void); scrollSensitivity?: number; scrollSpeed?: number; }; set appointmentDragging(value: { autoScroll?: boolean; data?: any | undefined; group?: string | undefined; onAdd?: ((e: { component: dxScheduler; event: event; fromComponent: dxSortable | dxDraggable; fromData: any; itemData: any; itemElement: any; toComponent: dxSortable | dxDraggable; toData: any; }) => void); onDragEnd?: ((e: { cancel: boolean; component: dxScheduler; event: event; fromComponent: dxSortable | dxDraggable; fromData: any; itemData: any; itemElement: any; toComponent: dxSortable | dxDraggable; toData: any; toItemData: any; }) => void); onDragMove?: ((e: { cancel: boolean; component: dxScheduler; event: event; fromComponent: dxSortable | dxDraggable; fromData: any; itemData: any; itemElement: any; toComponent: dxSortable | dxDraggable; toData: any; }) => void); onDragStart?: ((e: { cancel: boolean; component: dxScheduler; event: event; fromData: any; itemData: any; itemElement: any; }) => void); onRemove?: ((e: { component: dxScheduler; event: event; fromComponent: dxSortable | dxDraggable; fromData: any; itemData: any; itemElement: any; toComponent: dxSortable | dxDraggable; }) => void); scrollSensitivity?: number; scrollSpeed?: number; }); /** * Specifies a custom template for appointments. */ get appointmentTemplate(): any; set appointmentTemplate(value: any); /** * Specifies a custom template for tooltips displayed when users click an appointment or cell overflow indicator. */ get appointmentTooltipTemplate(): any; set appointmentTooltipTemplate(value: any); /** * Specifies cell duration in minutes. This property's value should divide the interval between startDayHour and endDayHour into even parts. */ get cellDuration(): number; set cellDuration(value: number); /** * Specifies whether or not an end user can scroll the view in both directions at the same time. */ get crossScrollingEnabled(): boolean; set crossScrollingEnabled(value: boolean); /** * Specifies the current date. */ get currentDate(): Date | number | string; set currentDate(value: Date | number | string); /** * Specifies the displayed view. Accepts name or type of a view available in the views array. */ get currentView(): string | ViewType; set currentView(value: string | ViewType); /** * Customizes the date navigator's text. */ get customizeDateNavigatorText(): ((info: { endDate: Date; startDate: Date; text: string; }) => string) | undefined; set customizeDateNavigatorText(value: ((info: { endDate: Date; startDate: Date; text: string; }) => string) | undefined); /** * Specifies a custom template for table cells. */ get dataCellTemplate(): any; set dataCellTemplate(value: any); /** * Binds the UI component to data. */ get dataSource(): Array | DataSource | DataSourceOptions | null | Store | string; set dataSource(value: Array | DataSource | DataSourceOptions | null | Store | string); /** * Specifies custom markup for date scale cells in all views. */ get dateCellTemplate(): any; set dateCellTemplate(value: any); /** * Specifies the format in which date-time values should be sent to the server. */ get dateSerializationFormat(): string | undefined; set dateSerializationFormat(value: string | undefined); /** * Specifies the name of the data source item field whose value holds the description of the corresponding appointment. */ get descriptionExpr(): string; set descriptionExpr(value: string); /** * Specifies whether the UI component responds to user interaction. */ get disabled(): boolean; set disabled(value: boolean); /** * Configures appointment editing options, such as available operations. */ get editing(): boolean | { allowAdding?: boolean; allowDeleting?: boolean; allowDragging?: boolean; allowResizing?: boolean; allowTimeZoneEditing?: boolean; allowUpdating?: boolean; form?: AppointmentFormProperties; popup?: Record; }; set editing(value: boolean | { allowAdding?: boolean; allowDeleting?: boolean; allowDragging?: boolean; allowResizing?: boolean; allowTimeZoneEditing?: boolean; allowUpdating?: boolean; form?: AppointmentFormProperties; popup?: Record; }); /** * Specifies the global attributes to be attached to the UI component's container element. */ get elementAttr(): Record; set elementAttr(value: Record); /** * Specifies the name of the data source item field that defines the ending of an appointment. */ get endDateExpr(): string; set endDateExpr(value: string); /** * Specifies the name of the data source item field that defines the timezone of the appointment end date. */ get endDateTimeZoneExpr(): string; set endDateTimeZoneExpr(value: string); /** * Specifies the last hour on the time scale. Accepts integer values from 0 to 24. */ get endDayHour(): number; set endDayHour(value: number); /** * Specifies the first day of a week. Does not apply to the agenda view. */ get firstDayOfWeek(): FirstDayOfWeek | undefined; set firstDayOfWeek(value: FirstDayOfWeek | undefined); /** * Specifies whether the UI component can be focused using keyboard navigation. */ get focusStateEnabled(): boolean; set focusStateEnabled(value: boolean); /** * If true, appointments are grouped by date first and then by resource; opposite if false. Applies only if appointments are grouped and groupOrientation is 'horizontal'. */ get groupByDate(): boolean; set groupByDate(value: boolean); /** * Specifies the resource kinds by which the scheduler's appointments are grouped in a timetable. */ get groups(): Array; set groups(value: Array); /** * Specifies the UI component's height. */ get height(): number | string | undefined; set height(value: number | string | undefined); /** * Specifies text for a hint that appears when a user pauses on the UI component. */ get hint(): string | undefined; set hint(value: string | undefined); /** * Specifies the time interval between when the date-time indicator changes its position, in milliseconds. */ get indicatorUpdateInterval(): number; set indicatorUpdateInterval(value: number); /** * The latest date the UI component allows you to select. */ get max(): Date | number | string | undefined; set max(value: Date | number | string | undefined); /** * Specifies the limit of full-sized appointments displayed per cell. Applies to all views except 'agenda'. */ get maxAppointmentsPerCell(): CellAppointmentsLimit | number; set maxAppointmentsPerCell(value: CellAppointmentsLimit | number); /** * The earliest date the UI component allows you to select. */ get min(): Date | number | string | undefined; set min(value: Date | number | string | undefined); /** * Specifies the text or HTML markup displayed by the UI component if the item collection is empty. Available for the Agenda view only. */ get noDataText(): string; set noDataText(value: string); /** * Specifies the minute offset applied to configured day durations in all views. */ get offset(): number; set offset(value: number); /** * Specifies the edit mode for recurring appointments. */ get recurrenceEditMode(): RecurrenceEditMode; set recurrenceEditMode(value: RecurrenceEditMode); /** * Specifies the name of the data source item field that defines exceptions for the current recurring appointment. */ get recurrenceExceptionExpr(): string; set recurrenceExceptionExpr(value: string); /** * Specifies the name of the data source item field that defines a recurrence rule for generating recurring appointments. */ get recurrenceRuleExpr(): string; set recurrenceRuleExpr(value: string); /** * Specifies whether filtering is performed on the server or client side. */ get remoteFiltering(): boolean; set remoteFiltering(value: boolean); /** * Specifies a custom template for resource headers. */ get resourceCellTemplate(): any; set resourceCellTemplate(value: any); /** * Specifies an array of resources available in the scheduler. */ get resources(): { allowMultiple?: boolean; colorExpr?: string; dataSource?: Array | DataSource | DataSourceOptions | null | Store | string; displayExpr?: ((resource: any) => string) | string; fieldExpr?: string; icon?: string; label?: string; useColorAsDefault?: boolean; valueExpr?: Function | string; }[]; set resources(value: { allowMultiple?: boolean; colorExpr?: string; dataSource?: Array | DataSource | DataSourceOptions | null | Store | string; displayExpr?: ((resource: any) => string) | string; fieldExpr?: string; icon?: string; label?: string; useColorAsDefault?: boolean; valueExpr?: Function | string; }[]); /** * Switches the UI component to a right-to-left representation. */ get rtlEnabled(): boolean; set rtlEnabled(value: boolean); /** * Configures scrolling. */ get scrolling(): dxSchedulerScrolling; set scrolling(value: dxSchedulerScrolling); /** * The data of the currently selected cells. */ get selectedCellData(): Array; set selectedCellData(value: Array); /** * Specifies whether to apply shading to cover the timetable up to the current time. */ get shadeUntilCurrentTime(): boolean; set shadeUntilCurrentTime(value: boolean); /** * Specifies the 'All-day' panel's visibility. Setting this property to false hides the panel along with the all-day appointments. */ get showAllDayPanel(): boolean; set showAllDayPanel(value: boolean); /** * Specifies the current date-time indicator's visibility. */ get showCurrentTimeIndicator(): boolean; set showCurrentTimeIndicator(value: boolean); /** * Specifies the name of the data source item field that defines the start of an appointment. */ get startDateExpr(): string; set startDateExpr(value: string); /** * Specifies the name of the data source item field that defines the timezone of the appointment start date. */ get startDateTimeZoneExpr(): string; set startDateTimeZoneExpr(value: string); /** * Specifies the first hour on the time scale. Accepts integer values from 0 to 24. */ get startDayHour(): number; set startDayHour(value: number); /** * Specifies the number of the element when the Tab key is used for navigating. */ get tabIndex(): number; set tabIndex(value: number); /** * Specifies the name of the data source item field that holds the subject of an appointment. */ get textExpr(): string; set textExpr(value: string); /** * Specifies custom markup for time scale cells in all views. */ get timeCellTemplate(): any; set timeCellTemplate(value: any); /** * Specifies the time zone for the Scheduler's grid. Accepts values from the IANA time zone database. */ get timeZone(): string; set timeZone(value: string); /** * Configures the toolbar. */ get toolbar(): dxSchedulerToolbar | undefined; set toolbar(value: dxSchedulerToolbar | undefined); /** * Specifies whether a user can switch views using tabs or a drop-down menu. */ get useDropDownViewSwitcher(): boolean; set useDropDownViewSwitcher(value: boolean); /** * Specifies and configures the views to be available in the view switcher. */ get views(): Array | string> | { agendaDuration?: number; allDayPanelMode?: AllDayPanelMode; appointmentCollectorTemplate?: any; appointmentTemplate?: any; appointmentTooltipTemplate?: any; cellDuration?: number; dataCellTemplate?: any; dateCellTemplate?: any; endDayHour?: number; firstDayOfWeek?: FirstDayOfWeek | undefined; groupByDate?: boolean; groupOrientation?: Orientation; groups?: Array; intervalCount?: number; maxAppointmentsPerCell?: CellAppointmentsLimit | number; name?: string | undefined; offset?: number; resourceCellTemplate?: any; scrolling?: dxSchedulerScrolling; startDate?: Date | number | string | undefined; startDayHour?: number; timeCellTemplate?: any; type?: undefined | ViewType; }[]; set views(value: Array | string> | { agendaDuration?: number; allDayPanelMode?: AllDayPanelMode; appointmentCollectorTemplate?: any; appointmentTemplate?: any; appointmentTooltipTemplate?: any; cellDuration?: number; dataCellTemplate?: any; dateCellTemplate?: any; endDayHour?: number; firstDayOfWeek?: FirstDayOfWeek | undefined; groupByDate?: boolean; groupOrientation?: Orientation; groups?: Array; intervalCount?: number; maxAppointmentsPerCell?: CellAppointmentsLimit | number; name?: string | undefined; offset?: number; resourceCellTemplate?: any; scrolling?: dxSchedulerScrolling; startDate?: Date | number | string | undefined; startDayHour?: number; timeCellTemplate?: any; type?: undefined | ViewType; }[]); /** * Specifies whether the UI component is visible. */ get visible(): boolean; set visible(value: boolean); /** * Specifies the UI component's width. */ get width(): number | string | undefined; set width(value: number | string | undefined); /** * A function that is executed after an appointment is added to the data source. */ onAppointmentAdded: EventEmitter; /** * A function that is executed before an appointment is added to the data source. */ onAppointmentAdding: EventEmitter; /** * A function that is executed when an appointment is clicked or tapped. */ onAppointmentClick: EventEmitter; /** * A function that is executed when a user attempts to open the browser's context menu for an appointment. Allows you to replace this context menu with a custom context menu. */ onAppointmentContextMenu: EventEmitter; /** * A function that is executed when an appointment is double-clicked or double-tapped. */ onAppointmentDblClick: EventEmitter; /** * A function that is executed after an appointment is deleted from the data source. */ onAppointmentDeleted: EventEmitter; /** * A function that is executed before an appointment is deleted from the data source. */ onAppointmentDeleting: EventEmitter; /** * A function that is executed before Scheduler displays the appointment edit form. */ onAppointmentFormOpening: EventEmitter; /** * A function that is executed when an appointment is rendered. */ onAppointmentRendered: EventEmitter; /** * Occurs before showing an appointment's tooltip. */ onAppointmentTooltipShowing: EventEmitter; /** * A function that is executed after an appointment is updated in the data source. */ onAppointmentUpdated: EventEmitter; /** * A function that is executed before an appointment is updated in the data source. */ onAppointmentUpdating: EventEmitter; /** * A function that is executed when a view cell is clicked. */ onCellClick: EventEmitter; /** * A function that is executed when a user attempts to open the browser's context menu for a cell. Allows you to replace this context menu with a custom context menu. */ onCellContextMenu: EventEmitter; /** * A function that is executed when the UI component is rendered and each time the component is repainted. */ onContentReady: EventEmitter; /** * A function that is executed before the UI component is disposed of. */ onDisposing: EventEmitter; /** * A function used in JavaScript frameworks to save the UI component instance. */ onInitialized: EventEmitter; /** * A function that is executed after a UI component property is changed. */ onOptionChanged: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ accessKeyChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ adaptivityEnabledChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ allDayExprChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ allDayPanelModeChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ appointmentCollectorTemplateChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ appointmentDraggingChange: EventEmitter<{ autoScroll?: boolean; data?: any | undefined; group?: string | undefined; onAdd?: ((e: { component: dxScheduler; event: event; fromComponent: dxSortable | dxDraggable; fromData: any; itemData: any; itemElement: any; toComponent: dxSortable | dxDraggable; toData: any; }) => void); onDragEnd?: ((e: { cancel: boolean; component: dxScheduler; event: event; fromComponent: dxSortable | dxDraggable; fromData: any; itemData: any; itemElement: any; toComponent: dxSortable | dxDraggable; toData: any; toItemData: any; }) => void); onDragMove?: ((e: { cancel: boolean; component: dxScheduler; event: event; fromComponent: dxSortable | dxDraggable; fromData: any; itemData: any; itemElement: any; toComponent: dxSortable | dxDraggable; toData: any; }) => void); onDragStart?: ((e: { cancel: boolean; component: dxScheduler; event: event; fromData: any; itemData: any; itemElement: any; }) => void); onRemove?: ((e: { component: dxScheduler; event: event; fromComponent: dxSortable | dxDraggable; fromData: any; itemData: any; itemElement: any; toComponent: dxSortable | dxDraggable; }) => void); scrollSensitivity?: number; scrollSpeed?: number; }>; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ appointmentTemplateChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ appointmentTooltipTemplateChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ cellDurationChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ crossScrollingEnabledChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ currentDateChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ currentViewChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ customizeDateNavigatorTextChange: EventEmitter<((info: { endDate: Date; startDate: Date; text: string; }) => string) | undefined>; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ dataCellTemplateChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ dataSourceChange: EventEmitter | DataSource | DataSourceOptions | null | Store | string>; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ dateCellTemplateChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ dateSerializationFormatChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ descriptionExprChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ disabledChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ editingChange: EventEmitter; }>; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ elementAttrChange: EventEmitter>; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ endDateExprChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ endDateTimeZoneExprChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ endDayHourChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ firstDayOfWeekChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ focusStateEnabledChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ groupByDateChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ groupsChange: EventEmitter>; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ heightChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ hintChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ indicatorUpdateIntervalChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ maxChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ maxAppointmentsPerCellChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ minChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ noDataTextChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ offsetChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ recurrenceEditModeChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ recurrenceExceptionExprChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ recurrenceRuleExprChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ remoteFilteringChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ resourceCellTemplateChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ resourcesChange: EventEmitter<{ allowMultiple?: boolean; colorExpr?: string; dataSource?: Array | DataSource | DataSourceOptions | null | Store | string; displayExpr?: ((resource: any) => string) | string; fieldExpr?: string; icon?: string; label?: string; useColorAsDefault?: boolean; valueExpr?: Function | string; }[]>; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ rtlEnabledChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ scrollingChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ selectedCellDataChange: EventEmitter>; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ shadeUntilCurrentTimeChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ showAllDayPanelChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ showCurrentTimeIndicatorChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ startDateExprChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ startDateTimeZoneExprChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ startDayHourChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ tabIndexChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ textExprChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ timeCellTemplateChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ timeZoneChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ toolbarChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ useDropDownViewSwitcherChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ viewsChange: EventEmitter | string> | { agendaDuration?: number; allDayPanelMode?: AllDayPanelMode; appointmentCollectorTemplate?: any; appointmentTemplate?: any; appointmentTooltipTemplate?: any; cellDuration?: number; dataCellTemplate?: any; dateCellTemplate?: any; endDayHour?: number; firstDayOfWeek?: FirstDayOfWeek | undefined; groupByDate?: boolean; groupOrientation?: Orientation; groups?: Array; intervalCount?: number; maxAppointmentsPerCell?: CellAppointmentsLimit | number; name?: string | undefined; offset?: number; resourceCellTemplate?: any; scrolling?: dxSchedulerScrolling; startDate?: Date | number | string | undefined; startDayHour?: number; timeCellTemplate?: any; type?: undefined | ViewType; }[]>; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ visibleChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ widthChange: EventEmitter; constructor(elementRef: ElementRef, ngZone: NgZone, templateHost: DxTemplateHost, _watcherHelper: WatcherHelper, _idh: IterableDifferHelper, optionHost: NestedOptionHost, transferState: TransferState, platformId: any); protected _createInstance(element: any, options: any): dxScheduler; ngOnDestroy(): void; ngOnChanges(changes: SimpleChanges): void; setupChanges(prop: string, changes: SimpleChanges): void; ngDoCheck(): void; _setOption(name: string, value: any): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare class DxSchedulerModule { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵmod: i0.ɵɵNgModuleDeclaration; static ɵinj: i0.ɵɵInjectorDeclaration; } export * from 'devextreme-angular/ui/scheduler/nested'; export { DxSchedulerTypes };