@event-calendar/core 5.4.1 → 5.5.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 +6 -2
- package/dist/index.css +4 -3
- package/dist/index.js +5440 -5650
- package/package.json +2 -2
- package/src/lib/components/ColHead.svelte +2 -0
- package/src/lib/date.js +11 -1
- package/src/plugins/day-grid/Day.svelte +5 -15
- package/src/plugins/day-grid/index.js +1 -2
- package/src/plugins/list/index.js +6 -3
- package/src/plugins/resource-timeline/View.svelte +27 -4
- package/src/plugins/resource-timeline/derived.js +39 -2
- package/src/plugins/resource-timeline/index.js +26 -5
- package/src/plugins/resource-timeline/state.svelte.js +6 -1
- package/src/storage/derived.js +4 -1
- package/src/storage/options.js +1 -0
- package/src/storage/state.svelte.js +2 -2
- package/src/styles/days.css +1 -1
- package/src/styles/index.css +1 -1
package/README.md
CHANGED
|
@@ -17,6 +17,10 @@ Inspired by [FullCalendar](https://fullcalendar.io/), it implements similar opti
|
|
|
17
17
|
<tr>
|
|
18
18
|
<td>
|
|
19
19
|
|
|
20
|
+
[](https://github.com/ekwi-tech)
|
|
21
|
+
</td>
|
|
22
|
+
<td>
|
|
23
|
+
|
|
20
24
|
[](https://github.com/steveb85)
|
|
21
25
|
</td>
|
|
22
26
|
<td>
|
|
@@ -253,8 +257,8 @@ This bundle contains a version of the calendar that includes all plugins and is
|
|
|
253
257
|
|
|
254
258
|
The first step is to include the following lines of code in the `<head>` section of your page:
|
|
255
259
|
```html
|
|
256
|
-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/build@5.4.
|
|
257
|
-
<script src="https://cdn.jsdelivr.net/npm/@event-calendar/build@5.4.
|
|
260
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/build@5.4.2/dist/event-calendar.min.css">
|
|
261
|
+
<script src="https://cdn.jsdelivr.net/npm/@event-calendar/build@5.4.2/dist/event-calendar.min.js"></script>
|
|
258
262
|
```
|
|
259
263
|
|
|
260
264
|
<details>
|
package/dist/index.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* EventCalendar v5.
|
|
2
|
+
* EventCalendar v5.5.0
|
|
3
3
|
* https://github.com/vkurko/calendar
|
|
4
4
|
*/
|
|
5
5
|
.ec {
|
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
100% var(--ec-slot-height);
|
|
99
99
|
}
|
|
100
100
|
|
|
101
|
-
.ec-timeline:not(.ec-month-view) .ec-body & {
|
|
101
|
+
.ec-timeline:not(.ec-month-view, .ec-year-view) .ec-body & {
|
|
102
102
|
--ec-last-line-color: transparent;
|
|
103
103
|
--ec-direction: to left;
|
|
104
104
|
[dir="rtl"] & {
|
|
@@ -680,7 +680,7 @@
|
|
|
680
680
|
flex-grow: 1;
|
|
681
681
|
}
|
|
682
682
|
|
|
683
|
-
.ec-timeline.ec-month-view & {
|
|
683
|
+
.ec-timeline:is(.ec-month-view, .ec-year-view) & {
|
|
684
684
|
grid-template-columns: max-content repeat(var(--ec-grid-cols), var(--ec-col-width));
|
|
685
685
|
}
|
|
686
686
|
|
|
@@ -755,3 +755,4 @@
|
|
|
755
755
|
.ec-hidden {
|
|
756
756
|
visibility: hidden;
|
|
757
757
|
}
|
|
758
|
+
/*$vite$:1*/
|