@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.57 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 { MultiDayViewProps } from '../day/MultiDayView.js';
import * as React from 'react';
/**
* Represents the properties of the [DayView](https://www.telerik.com/kendo-react-ui/components/scheduler/api/dayviewprops) Component.
*/
export interface DayViewProps extends MultiDayViewProps {
}
/**
* Represents the KendoReact [DayView](https://www.telerik.com/kendo-react-ui/components/scheduler/views/day) Component.
*/
export declare const DayView: React.FunctionComponent<DayViewProps>;
/** @hidden */
export declare const dayViewDefaultProps: {
name: string;
title: (localization: any) => any;
numberOfDays: number;
slotDuration: number;
slotDivisions: 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;
showCurrentTime: boolean;
defaultShowWorkHours: boolean;
};