12345678910111213 |
- import { Dayjs } from 'dayjs';
- import { CellState, LocaleText, SelectionMode, CalendarValue } from './props';
- export declare function getMonthListFromRange(start: Dayjs, end: Dayjs): Dayjs[];
- export declare function defaultMonthRange(): [number, number];
- export declare function getDate(month: Dayjs, weekStartsOn: string): Dayjs[];
- export declare function renderCells(cellsMonth: Dayjs, weekStartsOn: string, value: CalendarValue, localeText: LocaleText): CellState[];
- export declare function getSelectionModeFromValue(value?: CalendarValue): SelectionMode;
|