@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
23 lines (22 loc) • 758 B
TypeScript
declare const states: ("active" | "focus" | "disabled" | "selected" | "hover")[];
export type KendoCalendarCellProps = {
text?: string;
headerCell?: boolean;
today?: boolean;
weekend?: boolean;
showOtherMonth?: boolean;
weekCell?: boolean;
rangeStart?: boolean;
rangeMid?: boolean;
rangeEnd?: boolean;
empty?: boolean;
dayIndicator?: boolean;
};
export type KendoCalendarCellState = {
[K in (typeof states)[number]]?: boolean;
};
export declare const CalendarCell: {
(props: KendoCalendarCellProps & KendoCalendarCellState & React.HTMLAttributes<HTMLElement>): import("react/jsx-runtime").JSX.Element;
states: ("active" | "focus" | "disabled" | "selected" | "hover")[];
};
export default CalendarCell;