rmc-calendar
Version:
React Mobile Calendar Component(web and react-native)
75 lines (74 loc) • 1.86 kB
TypeScript
/// <reference types="react" />
import SingleMonth from './SingleMonth';
export declare namespace Models {
enum SelectType {
None = 0,
/** 单选 */
Single = 1,
/** 起/止 */
All = 2,
/** 区间仅选择了 起 */
Only = 3,
/** 区间起 */
Start = 4,
/** 区间中 */
Middle = 5,
/** 区间止 */
End = 6
}
interface CellData {
tick: number;
dayOfMonth: number;
selected: SelectType;
isFirstOfMonth: boolean;
isLastOfMonth: boolean;
outOfDate: boolean;
}
interface ExtraData {
/** 扩展信息 */
info?: string;
/** 是否禁止选择 */
disable?: boolean;
/** (web only) 附加cell样式 className */
cellCls?: any;
cellRender?: (date: Date) => React.ReactNode;
}
interface MonthData {
title: string;
firstDate: Date;
lastDate: Date;
weeks: Models.CellData[][];
component?: React.ReactNode;
height?: number;
y?: number;
updateLayout?: Function;
componentRef?: SingleMonth;
}
interface Locale {
title: string;
today: string;
month: string;
year: string;
am: string;
pm: string;
dateFormat: string;
dateTimeFormat: string;
noChoose: string;
week: string[];
clear: string;
selectTime: string;
selectStartTime: string;
selectEndTime: string;
start: string;
end: string;
begin: string;
over: string;
begin_over: string;
confirm: string;
monthTitle: string;
loadPrevMonth: string;
yesterday: string;
lastWeek: string;
lastMonth: string;
}
}