2022-09-12 07:13:52 +00:00
|
|
|
const FullCalendarProps = [
|
|
|
|
{
|
2022-09-14 14:26:41 +00:00
|
|
|
name: 'events',
|
|
|
|
type: 'array',
|
|
|
|
default: 'null',
|
|
|
|
description: 'An array of events to display.'
|
2022-09-12 07:13:52 +00:00
|
|
|
},
|
|
|
|
{
|
2022-09-14 14:26:41 +00:00
|
|
|
name: 'options',
|
|
|
|
type: 'object',
|
|
|
|
default: 'null',
|
|
|
|
description: 'A configuration object to define properties of FullCalendar.'
|
2022-09-12 07:13:52 +00:00
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
fullcalendar: {
|
2022-09-14 14:26:41 +00:00
|
|
|
name: 'FullCalendar',
|
|
|
|
description: 'An event calendar based on the FullCalendar library.',
|
2022-09-12 07:13:52 +00:00
|
|
|
props: FullCalendarProps
|
|
|
|
}
|
|
|
|
};
|