Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@fullcalendar/rrule
Advanced tools
Recurring events with RRule
First, ensure the RRule lib is installed:
npm install rrule
Then, install the FullCalendar core package, the RRule plugin, and any other plugins (like daygrid):
npm install @fullcalendar/core @fullcalendar/rrule @fullcalendar/daygrid
Instantiate a Calendar with the necessary plugin:
import { Calendar } from '@fullcalendar/core'
import rrulePlugin from '@fullcalendar/rrule'
import dayGridPlugin from '@fullcalendar/daygrid'
const calendarEl = document.getElementById('calendar')
const calendar = new Calendar(calendarEl, {
plugins: [
rrulePlugin,
dayGridPlugin
],
initialView: 'dayGridMonth',
events: [
{
title: 'Meeting',
rrule: {
freq: 'weekly',
byweekday: ['mo', 'fr']
}
}
]
})
calendar.render()
6.1.0 (2023-01-29)
multiMonthYear
view, which displays 3x4 small months when space permitsmultiMonth
view with custom durationsmultiMonthMinWidth
, which will force wrapping if months are too smallmultiMonthMaxColumns: 1
to guarantee one column of monthsmultiMonthTitleFormat
to customize text above each monthmonthStartFormat
dayGridYear
view@fullcalendar/web-component
has shadow
optiontrue
does default rendering (#7110)content
with JSX doesn't render (#7160)resourceAreaHeaderContent
overrides headerContent
in resource columns (#7153)showNonCurrentDates: false
can have final squished row (#7162)fullcalendar
bundle, FullCalendar.Preact
exposed for interop with pluginsallDay
propertyFAQs
Recurring events with RRule
The npm package @fullcalendar/rrule receives a total of 31,237 weekly downloads. As such, @fullcalendar/rrule popularity was classified as popular.
We found that @fullcalendar/rrule demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.