UNPKG

@progress/kendo-angular-scheduler

Version:

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.

30 lines (29 loc) 891 B
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** * Arguments for the `dateChange` event. */ export class DateChangeEvent { /** * The currently selected date of the Scheduler. */ selectedDate; /** * The date range of the current view. */ dateRange; /** * A reference to the Scheduler instance that triggered the event. */ sender; /** * @hidden */ constructor(sender, selectedDate, dateRange) { this.sender = sender; this.selectedDate = selectedDate; this.dateRange = dateRange; } }