New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@fullcalendar/adaptive

Package Overview
Dependencies
Maintainers
1
Versions
55
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@fullcalendar/adaptive

Optimizes FullCalendar for print

Source
npmnpm
Version
6.1.9
Version published
Weekly downloads
26K
10.56%
Maintainers
1
Weekly downloads
 
Created
Source

FullCalendar Adaptive Plugin

Optimizes FullCalendar for print (and soon other types of devices)

Installation

Install the FullCalendar core package, the adaptive plugin, and any other plugins (like daygrid):

npm install @fullcalendar/core @fullcalendar/adaptive @fullcalendar/daygrid

Usage

Instantiate a Calendar with the necessary plugin:

import { Calendar } from '@fullcalendar/core'
import adaptivePlugin from '@fullcalendar/adaptive'
import dayGridPlugin from '@fullcalendar/daygrid'

const calendarEl = document.getElementById('calendar')
const calendar = new Calendar(calendarEl, {
  plugins: [
    adaptivePlugin,
    dayGridPlugin
  ],
  initialView: 'dayGridMonth'
})

calendar.render()

Keywords

calendar

FAQs

Package last updated on 21 Sep 2023

Did you know?

Socket

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