Socket
Socket
Sign inDemoInstall

fullcalendar

Package Overview
Dependencies
7
Maintainers
1
Versions
91
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    fullcalendar

Easily render a full-sized drag & drop calendar with a combination of standard plugins


Version published
Weekly downloads
145K
increased by7.82%
Maintainers
1
Install size
4.68 MB
Created
Weekly downloads
 

Changelog

Source

6.1.11 (2024-02-19)

General

  • fix: fc-event-past className not attached to events that end midnight before today (#6120, #6486)
  • fix: aria-labelledby on view container should not exist when headerToolbar:false (#6884)

DayGrid and MultiMonth

  • fix: possible infinite recursion with dayGrid, dayMaxEventRows, and many hidden event rows (#7462)
  • fix: incorrectly put events under +more link (#7002, #6608, #6900)

React

  • fix: events incorrectly positioned w/ React strict-mode (#7574, #7389, #7400)

Angular

  • fix: Angular 17 SRR error with el.getRootNode (#7550)

React/Vue/Angular Connectors and Adaptive plugin

  • fix: eventContent custom content not rendering within print-mode (#7419)

Readme

Source

FullCalendar Standard Bundle

Easily render a full-sized drag & drop calendar with a combination of standard plugins

This fullcalendar package bundles these plugins:

  • @fullcalendar/core
  • @fullcalendar/interaction
  • @fullcalendar/daygrid
  • @fullcalendar/timegrid
  • @fullcalendar/list
  • @fullcalendar/multimonth

Usage with CDN or ZIP archive

Load the index.global.min.js file and use the FullCalendar global namespace:

<!DOCTYPE html>
<html>
  <head>
    <script src='https://cdn.jsdelivr.net/npm/fullcalendar/index.global.min.js'></script>
    <script>

      document.addEventListener('DOMContentLoaded', function() {
        const calendarEl = document.getElementById('calendar')
        const calendar = new FullCalendar.Calendar(calendarEl, {
          initialView: 'dayGridMonth'
        })
        calendar.render()
      })

    </script>
  </head>
  <body>
    <div id='calendar'></div>
  </body>
</html>

Usage with NPM and ES modules

npm install fullcalendar
import { Calendar } from 'fullcalendar'

document.addEventListener('DOMContentLoaded', function() {
  const calendarEl = document.getElementById('calendar')
  const calendar = new Calendar(calendarEl, {
    initialView: 'dayGridMonth'
  })
  calendar.render()
})

Keywords

FAQs

Last updated on 20 Feb 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc