@progress/kendo-react-scheduler
Version:
React Scheduler brings the functionality of Outlook's Calendar to a single UI component. KendoReact Scheduler package
35 lines (34 loc) • 1.28 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
*-------------------------------------------------------------------------------------------
*/
import { DataItem } from '../../models/index.js';
/**
* Represents the available `action` types for the `SchedulerItemShowRemoveDialogAction` objects.
*
* The available actions are:
* - `SHOW_REMOVE_DIALOG_SET`
* - `SHOW_REMOVE_DIALOG_OPEN`
* - `SHOW_REMOVE_DIALOG_CLOSE`
* - `SHOW_REMOVE_DIALOG_RESET`
* - `SHOW_REMOVE_DIALOG_TOGGLE`
*/
export declare enum SHOW_REMOVE_DIALOG_ACTION {
set = "SHOW_REMOVE_DIALOG_SET",
open = "SHOW_REMOVE_DIALOG_OPEN",
close = "SHOW_REMOVE_DIALOG_CLOSE",
reset = "SHOW_REMOVE_DIALOG_RESET",
toggle = "SHOW_REMOVE_DIALOG_TOGGLE"
}
/**
* Represents the object passed to the `show-remove-dialog` reducer.
*/
export type SchedulerItemShowRemoveDialogAction = {
type: SHOW_REMOVE_DIALOG_ACTION;
payload?: boolean;
};
/** @hidden */
export declare const useShowRemoveDialog: (defaultProp: DataItem, prop?: DataItem, callback?: any) => any[];