import { TCalendarLayouts } from "types";
export const MONTHS_LIST: {
[monthNumber: number]: {
shortTitle: string;
title: string;
};
} = {
1: {
shortTitle: "Jan",
title: "January",
},
2: {
shortTitle: "Feb",
title: "February",
3: {
shortTitle: "Mar",
title: "March",
4: {
shortTitle: "Apr",
title: "April",
5: {
shortTitle: "May",
title: "May",
6: {
shortTitle: "Jun",
title: "June",
7: {
shortTitle: "Jul",
title: "July",
8: {
shortTitle: "Aug",
title: "August",
9: {
shortTitle: "Sep",
title: "September",
10: {
shortTitle: "Oct",
title: "October",
11: {
shortTitle: "Nov",
title: "November",
12: {
shortTitle: "Dec",
title: "December",
export const DAYS_LIST: {
[dayIndex: number]: {
shortTitle: "Sun",
title: "Sunday",
shortTitle: "Mon",
title: "Monday",
shortTitle: "Tue",
title: "Tuesday",
shortTitle: "Wed",
title: "Wednesday",
shortTitle: "Thu",
title: "Thursday",
shortTitle: "Fri",
title: "Friday",
shortTitle: "Sat",
title: "Saturday",
export const CALENDAR_LAYOUTS: {
[layout in TCalendarLayouts]: {
key: TCalendarLayouts;
month: {
key: "month",
title: "Month layout",
week: {
key: "week",
title: "Week layout",