@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) • 862 B
JavaScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* Represents the selected edit mode when you update or remove events.
* For non-recurring events, use `Event`.
*/
export var EditMode;
(function (EditMode) {
/**
* Edits the selected event.
*/
EditMode[EditMode["Event"] = 0] = "Event";
/**
* Edits the selected occurrence.
*/
EditMode[EditMode["Occurrence"] = 1] = "Occurrence";
/**
* Edits all events in the series.
*/
EditMode[EditMode["Series"] = 2] = "Series";
})(EditMode || (EditMode = {}));