@progress/kendo-react-scheduler
Version:
React Scheduler brings the functionality of Outlook's Calendar to a single UI component. KendoReact Scheduler package
32 lines (31 loc) • 1.54 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 { ToolbarItemProps } from '@progress/kendo-react-buttons';
import * as React from 'react';
/**
* Represents the props of the KendoReact [SchedulerNavigation](https://www.telerik.com/kendo-react-ui/components/scheduler/navigation) component.
*/
/** @hidden */
export interface SchedulerNavigationProps extends ToolbarItemProps {
children?: React.ReactNode;
}
/**
* Represents the object which is returned from the `ref` callback of the [SchedulerNavigation](https://www.telerik.com/kendo-react-ui/components/scheduler/navigation).
*
* For more information about Refs, refer to the [React Refs & Dom](https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom) article.
*/
/** @hidden */
export interface SchedulerNavigationHandle {
props: SchedulerNavigationProps;
element: HTMLSpanElement | null;
}
/**
* Represents the default `navigation` component rendered by the [KendoReact Scheduler component](https://www.telerik.com/kendo-react-ui/components/scheduler).
*/
/** @hidden */
export declare const SchedulerNavigation: React.ForwardRefExoticComponent<SchedulerNavigationProps & React.RefAttributes<SchedulerNavigationHandle>>;