Skip to content

Commit

Permalink
0.26.2 (#645)
Browse files Browse the repository at this point in the history
0.26.2
  • Loading branch information
Ilaiwi authored Sep 9, 2019
2 parents fef9272 + 26b69ec commit 3b31adf
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 10 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres (more or less) to [Semantic Versioning](http://semver.o

## Unreleased

## 0.26.2

* render the items layer after columns and rows for layring @ilaiwi

## 0.26.1

* fix issue where mouse down gets stuck when scrolling the timeline #526 @KhalidArdah
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-calendar-timeline",
"version": "0.26.1",
"version": "0.26.2",
"description": "react calendar timeline",
"main": "lib/index.js",
"scripts": {
Expand Down
18 changes: 9 additions & 9 deletions src/lib/Timeline.js
Original file line number Diff line number Diff line change
Expand Up @@ -1041,25 +1041,25 @@ export default class ReactCalendarTimeline extends Component {
isInteractingWithItem={isInteractingWithItem}
>
<MarkerCanvas>
{this.items(
{this.columns(
canvasTimeStart,
zoom,
canvasTimeEnd,
canvasWidth,
minUnit,
dimensionItems,
groupHeights,
groupTops
timeSteps,
height
)}
{this.columns(
{this.rows(canvasWidth, groupHeights, groups)}
{this.items(
canvasTimeStart,
zoom,
canvasTimeEnd,
canvasWidth,
minUnit,
timeSteps,
height
dimensionItems,
groupHeights,
groupTops
)}
{this.rows(canvasWidth, groupHeights, groups)}
{this.childrenWithProps(
canvasTimeStart,
canvasTimeEnd,
Expand Down

0 comments on commit 3b31adf

Please sign in to comment.