@progress/kendo-react-scheduler
Version:
React Scheduler brings the functionality of Outlook's Calendar to a single UI component. KendoReact Scheduler package
49 lines (48 loc) • 2.02 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';
import { SchedulerItemProps } from '../../items/SchedulerItem.js';
import { SchedulerViewItemProps } from '../../items/SchedulerViewItem.js';
import * as React from 'react';
/**
* Represents the props of the KendoReact [SchedulerResize]() component.
*/
export interface SchedulerResizeProps {
/** @hidden */
format?: string;
/** @hidden */
ignoreIsAllDay?: boolean;
/**
* Specifies the `DataItem` to be visualized as a Resize item.
*/
dataItem: DataItem;
/**
* Specifies the orientation of the SchedulerItem inside the Drag.
*/
vertical?: boolean;
/**
* Overrides the default component responsible for visualizing a single item.
*
* The default Component is: [SchedulerItem].
*/
item?: React.ComponentType<SchedulerItemProps>;
/**
* Overrides the default component responsible for positioning the item inside the view.
*
* The default Component is: [SchedulerViewItem]().
*/
viewItem?: React.ComponentType<SchedulerViewItemProps>;
}
/**
* Represents the default `resize` component rendered by the [KendoReact SchedulerEditItem component]().
*/
export declare const SchedulerResize: React.FunctionComponent<SchedulerResizeProps>;
export declare const schedulerResizeDefaultProps: {
viewItem: React.ForwardRefExoticComponent<SchedulerViewItemProps & React.RefAttributes<import('../../items/SchedulerViewItem').SchedulerViewItemHandle>>;
item: React.ForwardRefExoticComponent<SchedulerItemProps & React.RefAttributes<import('../../items/SchedulerItem').SchedulerItemHandle>>;
};