primevue-mirror/api-generator/components/fullcalendar.js

23 lines
529 B
JavaScript
Raw Normal View History

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-14 14:26:41 +00:00
name: 'options',
type: 'object',
default: 'null',
description: 'A configuration object to define properties of FullCalendar.'
}
];
module.exports = {
fullcalendar: {
2022-09-14 14:26:41 +00:00
name: 'FullCalendar',
description: 'An event calendar based on the FullCalendar library.',
props: FullCalendarProps
}
};