pages/fullcalendar-main/packages/bootstrap4
2024-03-06 14:33:17 +01:00
..
src Publii: update content 2024-03-06 14:33:17 +01:00
.eslintrc.cjs Publii: update content 2024-03-06 14:33:17 +01:00
package.json Publii: update content 2024-03-06 14:33:17 +01:00
README.md Publii: update content 2024-03-06 14:33:17 +01:00

FullCalendar Bootstrap 4 Plugin

Bootstrap 4 theme for FullCalendar

For Bootstrap 5, use the @fullcalendar/bootstrap5 package

Installation

First, ensure the necessary Bootstrap packages are installed:

npm install bootstrap@4 @fortawesome/fontawesome-free

Then, install the FullCalendar core package, the Bootstrap plugin, and any other plugins (like daygrid):

npm install @fullcalendar/core @fullcalendar/bootstrap @fullcalendar/daygrid

Usage

Instantiate a Calendar with the necessary plugins and options:

import { Calendar } from '@fullcalendar/core'
import bootstrapPlugin from '@fullcalendar/bootstrap'
import dayGridPlugin from '@fullcalendar/daygrid'

// import third-party stylesheets directly from your JS
import 'bootstrap/dist/css/bootstrap.css'
import '@fortawesome/fontawesome-free/css/all.css' // needs additional webpack config!

const calendarEl = document.getElementById('calendar')
const calendar = new Calendar(calendarEl, {
  plugins: [
    bootstrapPlugin,
    dayGridPlugin
  ],
  themeSystem: 'bootstrap', // important!
  initialView: 'dayGridMonth'
})

calendar.render()