@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
18 lines (17 loc) • 673 B
TypeScript
export type KendoCalendarViewProps = {
orientation?: 'vertical' | 'horizontal';
calendarView?: 'month' | 'year' | 'decade' | 'century';
/** @aria When true, this view acts as the grid root (multiview/range calendar) */
gridRole?: boolean;
/** @aria aria-labelledby pointing to the calendar title */
ariaLabelledBy?: string;
};
export declare const CalendarView: {
(props: KendoCalendarViewProps & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
className: string;
defaultOptions: {
readonly orientation: "horizontal";
readonly calendarView: "month";
};
};
export default CalendarView;