@event-calendar/build 0.18.0 → 0.19.0
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 +11 -2
- package/event-calendar.min.js +2 -2
- package/event-calendar.min.js.map +1 -1
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -86,6 +86,7 @@ Inspired by [FullCalendar](https://fullcalendar.io/), implements similar options
|
|
|
86
86
|
- [selectMinDistance](#selectmindistance)
|
|
87
87
|
- [scrollTime](#scrolltime)
|
|
88
88
|
- [slotDuration](#slotduration)
|
|
89
|
+
- [slotEventOverlap](#sloteventoverlap)
|
|
89
90
|
- [slotHeight](#slotheight)
|
|
90
91
|
- [slotLabelFormat](#slotlabelformat)
|
|
91
92
|
- [slotMaxTime](#slotmaxtime)
|
|
@@ -192,8 +193,8 @@ import '@event-calendar/core/index.css';
|
|
|
192
193
|
### Pre-built browser ready bundle
|
|
193
194
|
Include the following lines of code in the `<head>` section of your page:
|
|
194
195
|
```html
|
|
195
|
-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/build@0.
|
|
196
|
-
<script src="https://cdn.jsdelivr.net/npm/@event-calendar/build@0.
|
|
196
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/build@0.19.0/event-calendar.min.css">
|
|
197
|
+
<script src="https://cdn.jsdelivr.net/npm/@event-calendar/build@0.19.0/event-calendar.min.js"></script>
|
|
197
198
|
```
|
|
198
199
|
|
|
199
200
|
<details>
|
|
@@ -1726,6 +1727,14 @@ Defines the frequency for displaying time slots.
|
|
|
1726
1727
|
|
|
1727
1728
|
This should be a value that can be parsed into a [Duration](#duration-object) object.
|
|
1728
1729
|
|
|
1730
|
+
### slotEventOverlap
|
|
1731
|
+
- Type `boolean`
|
|
1732
|
+
- Default `true`
|
|
1733
|
+
|
|
1734
|
+
Determines whether events in the `timeGrid`/`resourceTimeGrid` views should visually overlap when they intersect in time.
|
|
1735
|
+
|
|
1736
|
+
If set to `false`, then intersecting events will be placed next to each other.
|
|
1737
|
+
|
|
1729
1738
|
### slotHeight
|
|
1730
1739
|
- Type `integer`
|
|
1731
1740
|
- Default `24`
|