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

23 lines
529 B
JavaScript
Raw Normal View History

2021-05-12 09:35:29 +00:00
const FullCalendarProps = [
{
name: "events",
type: "array",
default: "null",
description: "An array of events to display."
},
{
name: "options",
type: "object",
default: "null",
description: "A configuration object to define properties of FullCalendar."
}
];
module.exports = {
fullcalendar: {
name: "FullCalendar",
description: "An event calendar based on the FullCalendar library.",
props: FullCalendarProps
}
};