Skip to content

Commit

Permalink
v3.0.1
Browse files Browse the repository at this point in the history
Fixed scrollTime in ResourceTimeline view
Fixed an issue with erroneous vertical scrolling in ResourceTimeline view
  • Loading branch information
vkurko committed May 24, 2024
1 parent b173a4b commit 371637a
Show file tree
Hide file tree
Showing 24 changed files with 131 additions and 83 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Event Calendar changelog

## 3.0.1
May 24, 2024

* Fixed `scrollTime` in `ResourceTimeline` view
* Fixed an issue with erroneous vertical scrolling in `ResourceTimeline` view

## 3.0.0
May 23, 2024

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -202,8 +202,8 @@ import '@event-calendar/core/index.css';
### Pre-built browser ready bundle
Include the following lines of code in the `<head>` section of your page:
```html
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/[email protected].0/event-calendar.min.css">
<script src="https://cdn.jsdelivr.net/npm/@event-calendar/[email protected].0/event-calendar.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/[email protected].1/event-calendar.min.css">
<script src="https://cdn.jsdelivr.net/npm/@event-calendar/[email protected].1/event-calendar.min.js"></script>
```

<details>
Expand Down
23 changes: 20 additions & 3 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
<link rel="manifest" href="site.webmanifest">
<link rel="stylesheet" href="global.css?20231021">

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/[email protected].0/event-calendar.min.css">
<script src="https://cdn.jsdelivr.net/npm/@event-calendar/[email protected].0/event-calendar.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/[email protected].1/event-calendar.min.css">
<script src="https://cdn.jsdelivr.net/npm/@event-calendar/[email protected].1/event-calendar.min.js"></script>
<!-- Yandex.Metrika counter -->
<script type="text/javascript" >
(function(m,e,t,r,i,k,a){m[i]=m[i]||function(){(m[i].a=m[i].a||[]).push(arguments)};
Expand Down Expand Up @@ -71,7 +71,24 @@ <h4 class="col"><a href="https://github.com/vkurko/calendar">Event Calendar</a>
pointer: true,
slotMinTime: '09:00',
slotMaxTime: '21:00',
slotWidth: 80
slotWidth: 80,
resources: [
{id: 1, title: 'Resource A'},
{id: 2, title: 'Resource B'},
{id: 3, title: 'Resource C'},
{id: 4, title: 'Resource D'},
{id: 5, title: 'Resource E'},
{id: 6, title: 'Resource F'},
{id: 7, title: 'Resource G'},
{id: 8, title: 'Resource H'},
{id: 9, title: 'Resource I'},
{id: 10, title: 'Resource J'},
{id: 11, title: 'Resource K'},
{id: 12, title: 'Resource L'},
{id: 13, title: 'Resource M'},
{id: 14, title: 'Resource N'},
{id: 15, title: 'Resource O'}
]
}
},
dayMaxEvents: true,
Expand Down
61 changes: 31 additions & 30 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "event-calendar",
"version": "3.0.0",
"version": "3.0.1",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
Expand All @@ -13,14 +13,14 @@
"@babel/plugin-transform-runtime": "^7.24.3",
"@babel/preset-env": "^7.24.5",
"@babel/runtime-corejs3": "^7.24.5",
"@event-calendar/build": "~3.0.0",
"@event-calendar/core": "~3.0.0",
"@event-calendar/day-grid": "~3.0.0",
"@event-calendar/interaction": "~3.0.0",
"@event-calendar/list": "~3.0.0",
"@event-calendar/resource-time-grid": "~3.0.0",
"@event-calendar/resource-timeline": "~3.0.0",
"@event-calendar/time-grid": "~3.0.0",
"@event-calendar/build": "~3.0.1",
"@event-calendar/core": "~3.0.1",
"@event-calendar/day-grid": "~3.0.1",
"@event-calendar/interaction": "~3.0.1",
"@event-calendar/list": "~3.0.1",
"@event-calendar/resource-time-grid": "~3.0.1",
"@event-calendar/resource-timeline": "~3.0.1",
"@event-calendar/time-grid": "~3.0.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
Expand Down
4 changes: 2 additions & 2 deletions packages/build/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -202,8 +202,8 @@ import '@event-calendar/core/index.css';
### Pre-built browser ready bundle
Include the following lines of code in the `<head>` section of your page:
```html
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/[email protected].0/event-calendar.min.css">
<script src="https://cdn.jsdelivr.net/npm/@event-calendar/[email protected].0/event-calendar.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/[email protected].1/event-calendar.min.css">
<script src="https://cdn.jsdelivr.net/npm/@event-calendar/[email protected].1/event-calendar.min.js"></script>
```

<details>
Expand Down
14 changes: 8 additions & 6 deletions packages/build/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@event-calendar/build",
"version": "3.0.0",
"version": "3.0.1",
"title": "Event Calendar",
"description": "Full-sized drag & drop event calendar with resource & timeline views",
"keywords": [
Expand All @@ -18,11 +18,13 @@
},
"license": "MIT",
"jsdelivr": "event-calendar.min.js",
"style": "event-calendar.min.css",
"devDependencies": {
"@event-calendar/day-grid": "~3.0.0",
"@event-calendar/interaction": "~3.0.0",
"@event-calendar/list": "~3.0.0",
"@event-calendar/time-grid": "~3.0.0",
"@event-calendar/resource-time-grid": "~3.0.0"
"@event-calendar/day-grid": "~3.0.1",
"@event-calendar/interaction": "~3.0.1",
"@event-calendar/list": "~3.0.1",
"@event-calendar/time-grid": "~3.0.1",
"@event-calendar/resource-time-grid": "~3.0.1",
"@event-calendar/resource-timeline": "~3.0.1"
}
}
4 changes: 2 additions & 2 deletions packages/core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -202,8 +202,8 @@ import '@event-calendar/core/index.css';
### Pre-built browser ready bundle
Include the following lines of code in the `<head>` section of your page:
```html
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/[email protected].0/event-calendar.min.css">
<script src="https://cdn.jsdelivr.net/npm/@event-calendar/[email protected].0/event-calendar.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/[email protected].1/event-calendar.min.css">
<script src="https://cdn.jsdelivr.net/npm/@event-calendar/[email protected].1/event-calendar.min.js"></script>
```

<details>
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@event-calendar/core",
"version": "3.0.0",
"version": "3.0.1",
"title": "Event Calendar Core package",
"description": "Full-sized drag & drop event calendar with resource & timeline views",
"keywords": [
Expand Down
3 changes: 3 additions & 0 deletions packages/core/src/styles/timeline.scss
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,9 @@
.ec-time {
border-left: 1px solid var(--ec-border-color);
box-sizing: border-box;
min-height: 24px;
overflow: hidden;
text-overflow: ellipsis;
}

.ec-time, .ec-line {
Expand Down
4 changes: 2 additions & 2 deletions packages/day-grid/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -202,8 +202,8 @@ import '@event-calendar/core/index.css';
### Pre-built browser ready bundle
Include the following lines of code in the `<head>` section of your page:
```html
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/[email protected].0/event-calendar.min.css">
<script src="https://cdn.jsdelivr.net/npm/@event-calendar/[email protected].0/event-calendar.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/[email protected].1/event-calendar.min.css">
<script src="https://cdn.jsdelivr.net/npm/@event-calendar/[email protected].1/event-calendar.min.js"></script>
```

<details>
Expand Down
4 changes: 2 additions & 2 deletions packages/day-grid/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@event-calendar/day-grid",
"version": "3.0.0",
"version": "3.0.1",
"title": "Event Calendar DayGrid plugin",
"description": "Full-sized drag & drop event calendar with resource & timeline views",
"keywords": [
Expand All @@ -27,7 +27,7 @@
"./package.json": "./package.json"
},
"dependencies": {
"@event-calendar/core": "~3.0.0",
"@event-calendar/core": "~3.0.1",
"svelte": "^4.2.16"
}
}
4 changes: 2 additions & 2 deletions packages/interaction/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -202,8 +202,8 @@ import '@event-calendar/core/index.css';
### Pre-built browser ready bundle
Include the following lines of code in the `<head>` section of your page:
```html
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/[email protected].0/event-calendar.min.css">
<script src="https://cdn.jsdelivr.net/npm/@event-calendar/[email protected].0/event-calendar.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/[email protected].1/event-calendar.min.css">
<script src="https://cdn.jsdelivr.net/npm/@event-calendar/[email protected].1/event-calendar.min.js"></script>
```

<details>
Expand Down
4 changes: 2 additions & 2 deletions packages/interaction/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@event-calendar/interaction",
"version": "3.0.0",
"version": "3.0.1",
"title": "Event Calendar Interaction plugin",
"description": "Full-sized drag & drop event calendar with resource & timeline views",
"keywords": [
Expand All @@ -27,7 +27,7 @@
"./package.json": "./package.json"
},
"dependencies": {
"@event-calendar/core": "~3.0.0",
"@event-calendar/core": "~3.0.1",
"svelte": "^4.2.16"
}
}
4 changes: 2 additions & 2 deletions packages/list/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -202,8 +202,8 @@ import '@event-calendar/core/index.css';
### Pre-built browser ready bundle
Include the following lines of code in the `<head>` section of your page:
```html
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/[email protected].0/event-calendar.min.css">
<script src="https://cdn.jsdelivr.net/npm/@event-calendar/[email protected].0/event-calendar.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/[email protected].1/event-calendar.min.css">
<script src="https://cdn.jsdelivr.net/npm/@event-calendar/[email protected].1/event-calendar.min.js"></script>
```

<details>
Expand Down
4 changes: 2 additions & 2 deletions packages/list/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@event-calendar/list",
"version": "3.0.0",
"version": "3.0.1",
"title": "Event Calendar List plugin",
"description": "Full-sized drag & drop event calendar with resource & timeline views",
"keywords": [
Expand All @@ -27,7 +27,7 @@
"./package.json": "./package.json"
},
"dependencies": {
"@event-calendar/core": "~3.0.0",
"@event-calendar/core": "~3.0.1",
"svelte": "^4.2.16"
}
}
4 changes: 2 additions & 2 deletions packages/resource-time-grid/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -202,8 +202,8 @@ import '@event-calendar/core/index.css';
### Pre-built browser ready bundle
Include the following lines of code in the `<head>` section of your page:
```html
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/[email protected].0/event-calendar.min.css">
<script src="https://cdn.jsdelivr.net/npm/@event-calendar/[email protected].0/event-calendar.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/[email protected].1/event-calendar.min.css">
<script src="https://cdn.jsdelivr.net/npm/@event-calendar/[email protected].1/event-calendar.min.js"></script>
```

<details>
Expand Down
Loading

0 comments on commit 371637a

Please sign in to comment.