@fullcalendar/bootstrap
TypeScript icon, indicating that this package has built-in type declarations

6.1.13 • Public • Published

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()

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i @fullcalendar/bootstrap

      Weekly Downloads

      36,753

      Version

      6.1.13

      License

      MIT

      Unpacked Size

      11.1 kB

      Total Files

      11

      Last publish

      Collaborators

      • arshaw