@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
20 lines (19 loc) • 752 B
TypeScript
import { KendoComponent } from '../_types/component';
declare const options: {
size: ("small" | "medium" | "large" | undefined)[];
};
export type KendoMultiViewCalendarOptions = {
size?: (typeof options.size)[number] | null;
};
export type KendoMultiViewCalendarProps = KendoMultiViewCalendarOptions & {
calendarTitleText?: string;
calendarView?: 'month' | 'year' | 'decade' | 'century';
orientation?: 'horizontal' | 'vertical';
showCalendarFooter?: boolean;
calendarCaption?: string;
showTableHead?: boolean;
showWeek?: boolean;
dir?: 'ltr' | 'rtl';
};
export declare const MultiViewCalendar: KendoComponent<KendoMultiViewCalendarProps & React.HTMLAttributes<HTMLDivElement>>;
export default MultiViewCalendar;