@progress/kendo-react-scheduler
Version:
React Scheduler brings the functionality of Outlook's Calendar to a single UI component. KendoReact Scheduler package
37 lines (36 loc) • 1.05 kB
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
/**
* The editable settings of the Scheduler.
*/
export interface EditableProp {
/**
* Specifies if the events can be removed by using a **Remove** icon.
*/
remove: boolean;
/**
* Specifies if the events can be dragged.
*/
drag: boolean;
/**
* Specifies if the events can be resized.
*/
resize: boolean;
/**
* Specifies if new events can be added on `slot double click`.
*/
add: boolean;
/**
* Specifies if the events can be edited on `item double click`.
*/
edit: boolean;
/**
* Specifies if the events can be edited on `item double click`.
*/
select: boolean;
}