@apptane/react-ui-calendar
Version:
Calendar component in Apptane React UI framework
23 lines (22 loc) • 1.25 kB
TypeScript
import { CalendarMonthProps } from "./Calendar.types.js";
/**
* `CalendarMonth` component — renders individual month pane in the calendar.
*/
export declare function CalendarMonth({ colorMode, appearance, year, month, selected, rangeStart, rangeEnd, notBefore, notAfter, weekStartsOnSunday, onClick, }: CalendarMonthProps): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
export declare namespace CalendarMonth {
var displayName: string;
var propTypes: {
year: import("prop-types").Validator<number>;
month: import("prop-types").Validator<number>;
selected: import("prop-types").Requireable<Date>;
rangeStart: import("prop-types").Requireable<Date>;
rangeEnd: import("prop-types").Requireable<Date>;
notBefore: import("prop-types").Requireable<Date>;
notAfter: import("prop-types").Requireable<Date>;
weekStartsOnSunday: import("prop-types").Requireable<boolean>;
onClick: import("prop-types").Requireable<(...args: any[]) => any>;
colorMode: import("prop-types").Requireable<import("@apptane/react-ui-core").ColorMode>;
appearance: import("prop-types").Requireable<any>;
};
}
export default CalendarMonth;