@event-calendar/core 5.2.3 → 5.2.4
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/README.md +2 -2
- package/dist/index.css +1 -1
- package/dist/index.js +583 -548
- package/package.json +2 -2
- package/src/lib/range.js +0 -10
- package/src/plugins/day-grid/View.svelte +49 -47
- package/src/plugins/resource-time-grid/derived.js +2 -2
- package/src/plugins/resource-timeline/View.svelte +76 -73
- package/src/plugins/time-grid/View.svelte +90 -87
- package/src/storage/derived.js +1 -1
- package/src/storage/effects.js +4 -1
package/README.md
CHANGED
|
@@ -247,8 +247,8 @@ This bundle contains a version of the calendar that includes all plugins and is
|
|
|
247
247
|
|
|
248
248
|
The first step is to include the following lines of code in the `<head>` section of your page:
|
|
249
249
|
```html
|
|
250
|
-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/build@5.2.
|
|
251
|
-
<script src="https://cdn.jsdelivr.net/npm/@event-calendar/build@5.2.
|
|
250
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/build@5.2.4/dist/event-calendar.min.css">
|
|
251
|
+
<script src="https://cdn.jsdelivr.net/npm/@event-calendar/build@5.2.4/dist/event-calendar.min.js"></script>
|
|
252
252
|
```
|
|
253
253
|
|
|
254
254
|
<details>
|
package/dist/index.css
CHANGED