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.

24 lines (23 loc) 854 B
/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { PreventableEvent } from './preventable-event'; import { SchedulerEvent } from '../types'; /** * Represents the arguments for the `moreEventsClick` event. */ export declare class MoreEventsClickEvent extends PreventableEvent { /** * The events that are displayed in the day slot. */ displayedEvents: SchedulerEvent[]; /** * The events that are hidden from the day slot. */ moreEvents: SchedulerEvent[]; /** * @hidden */ constructor(); }