Skip to content

Commit bffb5d1

Browse files
rovshenavkurko
authored andcommitted
v4.5.2
Fixed row height issue in resourceTimeline views
1 parent 1178e9c commit bffb5d1

File tree

15 files changed

+71
-59
lines changed

15 files changed

+71
-59
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
# EventCalendar changelog
22

3+
## 4.5.2
4+
August 21, 2025
5+
* Fixed row height issue in `resourceTimeline` views ([401](https://github.com/vkurko/calendar/issues/401))
6+
37
## 4.5.1
48
August 11, 2025
5-
* Attempt to fix `Svelte error: await_outside_boundary` ([530](https://github.com/vkurko/calendar/issues/530))
9+
* Fixed `Svelte error: await_outside_boundary` ([530](https://github.com/vkurko/calendar/issues/530))
610

711
## 4.5.0
812
June 27, 2025

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,8 +243,8 @@ This bundle contains a version of the calendar that includes all plugins and is
243243

244244
The first step is to include the following lines of code in the `<head>` section of your page:
245245
```html
246-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/build@4.5.1/dist/event-calendar.min.css">
247-
<script src="https://cdn.jsdelivr.net/npm/@event-calendar/build@4.5.1/dist/event-calendar.min.js"></script>
246+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/build@4.5.2/dist/event-calendar.min.css">
247+
<script src="https://cdn.jsdelivr.net/npm/@event-calendar/build@4.5.2/dist/event-calendar.min.js"></script>
248248
```
249249

250250
<details>

docs/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
<link rel="manifest" href="site.webmanifest">
1313
<link rel="stylesheet" href="global.css?20231021">
1414

15-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/build@4.5.1/dist/event-calendar.min.css">
16-
<script src="https://cdn.jsdelivr.net/npm/@event-calendar/build@4.5.1/dist/event-calendar.min.js"></script>
15+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/build@4.5.2/dist/event-calendar.min.css">
16+
<script src="https://cdn.jsdelivr.net/npm/@event-calendar/build@4.5.2/dist/event-calendar.min.js"></script>
1717

1818
<style>
1919
.ec-timeline .ec-time, .ec-timeline .ec-line {

package-lock.json

Lines changed: 25 additions & 32 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "event-calendar",
33
"private": true,
4-
"version": "4.5.1",
4+
"version": "4.5.2",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
@@ -13,7 +13,7 @@
1313
"devDependencies": {
1414
"@sveltejs/vite-plugin-svelte": "^5.1.1",
1515
"sass": "^1.90.0",
16-
"svelte": "^5.38.0",
16+
"svelte": "^5.38.2",
1717
"vite": "^6.3.5",
1818
"vite-plugin-banner": "^0.8.1"
1919
}

packages/build/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,8 +243,8 @@ This bundle contains a version of the calendar that includes all plugins and is
243243

244244
The first step is to include the following lines of code in the `<head>` section of your page:
245245
```html
246-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/build@4.5.1/dist/event-calendar.min.css">
247-
<script src="https://cdn.jsdelivr.net/npm/@event-calendar/build@4.5.1/dist/event-calendar.min.js"></script>
246+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/build@4.5.2/dist/event-calendar.min.css">
247+
<script src="https://cdn.jsdelivr.net/npm/@event-calendar/build@4.5.2/dist/event-calendar.min.js"></script>
248248
```
249249

250250
<details>

packages/build/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@event-calendar/build",
3-
"version": "4.5.1",
3+
"version": "4.5.2",
44
"title": "Event Calendar",
55
"description": "Full-sized drag & drop event calendar with resource & timeline views",
66
"keywords": [

packages/core/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,8 +243,8 @@ This bundle contains a version of the calendar that includes all plugins and is
243243

244244
The first step is to include the following lines of code in the `<head>` section of your page:
245245
```html
246-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/build@4.5.1/dist/event-calendar.min.css">
247-
<script src="https://cdn.jsdelivr.net/npm/@event-calendar/build@4.5.1/dist/event-calendar.min.js"></script>
246+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/build@4.5.2/dist/event-calendar.min.css">
247+
<script src="https://cdn.jsdelivr.net/npm/@event-calendar/build@4.5.2/dist/event-calendar.min.js"></script>
248248
```
249249

250250
<details>

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@event-calendar/core",
3-
"version": "4.5.1",
3+
"version": "4.5.2",
44
"title": "Event Calendar Core package",
55
"description": "Full-sized drag & drop event calendar with resource & timeline views",
66
"keywords": [

packages/core/src/plugins/resource-timeline/Body.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import Days from './Days.svelte';
66
77
let {_bodyEl, _bodyHeight, _bodyWidth, _bodyScrollLeft, _headerEl, _filteredEvents, _sidebarEl, _dayTimes, _dayTimeLimits,
8-
_recheckScrollable, _resHs, _viewResources, _viewDates, scrollTime, slotDuration, slotWidth, theme} = getContext('state');
8+
_recheckScrollable, _daysHs, _viewResources, _viewDates, scrollTime, slotDuration, slotWidth, theme} = getContext('state');
99
1010
let refs = [];
1111
@@ -21,7 +21,7 @@
2121
});
2222
2323
function reposition() {
24-
$_resHs.clear();
24+
$_daysHs.clear();
2525
runReposition(refs, $_viewResources);
2626
}
2727
$effect(() => {

0 commit comments

Comments
 (0)