mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 17:02:38 +00:00
22 lines
529 B
JavaScript
22 lines
529 B
JavaScript
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
|
|
}
|
|
};
|