@fullcalendar/interaction 7.0.0-beta.3 → 7.0.0-beta.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE.md CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2021 Adam Shaw
3
+ Copyright (c) 2025 Adam Shaw
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining
6
6
  a copy of this software and associated documentation files (the
package/README.md CHANGED
@@ -19,12 +19,18 @@ Instantiate a Calendar with the necessary plugins and options:
19
19
  import { Calendar } from '@fullcalendar/core'
20
20
  import interactionPlugin from '@fullcalendar/interaction'
21
21
  import dayGridPlugin from '@fullcalendar/daygrid'
22
+ import classicThemePlugin from '@fullcalendar/theme-classic'
23
+
24
+ import '@fullcalendar/core/skeleton.css'
25
+ import '@fullcalendar/theme-classic/theme.css'
26
+ import '@fullcalendar/theme-classic/palette.css'
22
27
 
23
28
  const calendarEl = document.getElementById('calendar')
24
29
  const calendar = new Calendar(calendarEl, {
25
30
  plugins: [
26
31
  interactionPlugin,
27
- dayGridPlugin
32
+ dayGridPlugin,
33
+ classicThemePlugin
28
34
  ],
29
35
  initialView: 'dayGridMonth',
30
36
  editable: true, // important for activating event interactions!