1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-05 19:42:38 +02:00
Oinktube/node_modules/@fullcalendar/list
2024-08-05 11:37:04 -03:00
..
index.cjs Add Calendar 2024-05-03 12:16:27 -03:00
index.d.ts Add Calendar 2024-05-03 12:16:27 -03:00
index.global.js Libs updates and new version with option to pin videos on channel 2024-08-05 11:37:04 -03:00
index.global.min.js Libs updates and new version with option to pin videos on channel 2024-08-05 11:37:04 -03:00
index.js Add Calendar 2024-05-03 12:16:27 -03:00
internal-common.d.ts Add Calendar 2024-05-03 12:16:27 -03:00
internal.cjs Add Calendar 2024-05-03 12:16:27 -03:00
internal.d.ts Add Calendar 2024-05-03 12:16:27 -03:00
internal.js Add Calendar 2024-05-03 12:16:27 -03:00
LICENSE.md Add Calendar 2024-05-03 12:16:27 -03:00
package.json Libs updates and new version with option to pin videos on channel 2024-08-05 11:37:04 -03:00
README.md Add Calendar 2024-05-03 12:16:27 -03:00

FullCalendar List View Plugin

Display events on a calendar view that looks like a bulleted list

Installation

Install the necessary packages:

npm install @fullcalendar/core @fullcalendar/list

Usage

Instantiate a Calendar with the necessary plugin:

import { Calendar } from '@fullcalendar/core'
import listPlugin from '@fullcalendar/list'

const calendarEl = document.getElementById('calendar')
const calendar = new Calendar(calendarEl, {
  plugins: [listPlugin],
  initialView: 'listWeek',
  events: [
    { title: 'Meeting', start: new Date() }
  ]
})

calendar.render()