UNPKG

@progress/kendo-react-scheduler

Version:

React Scheduler brings the functionality of Outlook's Calendar to a single UI component. KendoReact Scheduler package

39 lines (38 loc) 1.63 kB
/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { MultiDayTimelineViewProps } from './MultiDayTimelineView.js'; import * as React from 'react'; /** * Represents the properties of the KendoReact [TimelineView](https://www.telerik.com/kendo-react-ui/components/scheduler/api/timelineview) Component. */ export interface TimelineViewProps extends MultiDayTimelineViewProps { } /** * Represents the KendoReact [TimelineView](https://www.telerik.com/kendo-react-ui/components/scheduler/views/timeline) Component. */ export declare const TimelineView: React.FunctionComponent<TimelineViewProps>; /** @hidden */ export declare const timeLineViewDefaultProps: { name: string; title: (localization: any) => any; slotDuration: number; slotDivisions: number; numberOfDays: number; selectedDateFormat: string; selectedShortDateFormat: string; currentTimeMarker: boolean; dateRange: ({ date, numberOfDays, timezone }: import('../..').SchedulerViewDateRangeArgs) => import('../..').DateRange; startTime: string; endTime: string; isWorkDayStart: string; isWorkDayEnd: string; workWeekStart: import('@progress/kendo-date-math').Day; workWeekEnd: import('@progress/kendo-date-math').Day; defaultShowWorkHours: boolean; columnWidth: number; };