Skip to content

Commit 3b31adf

Browse files
authored
0.26.2 (#645)
0.26.2
2 parents fef9272 + 26b69ec commit 3b31adf

File tree

3 files changed

+14
-10
lines changed

3 files changed

+14
-10
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres (more or less) to [Semantic Versioning](http://semver.o
77

88
## Unreleased
99

10+
## 0.26.2
11+
12+
* render the items layer after columns and rows for layring @ilaiwi
13+
1014
## 0.26.1
1115

1216
* fix issue where mouse down gets stuck when scrolling the timeline #526 @KhalidArdah

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-calendar-timeline",
3-
"version": "0.26.1",
3+
"version": "0.26.2",
44
"description": "react calendar timeline",
55
"main": "lib/index.js",
66
"scripts": {

src/lib/Timeline.js

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1041,25 +1041,25 @@ export default class ReactCalendarTimeline extends Component {
10411041
isInteractingWithItem={isInteractingWithItem}
10421042
>
10431043
<MarkerCanvas>
1044-
{this.items(
1044+
{this.columns(
10451045
canvasTimeStart,
1046-
zoom,
10471046
canvasTimeEnd,
10481047
canvasWidth,
10491048
minUnit,
1050-
dimensionItems,
1051-
groupHeights,
1052-
groupTops
1049+
timeSteps,
1050+
height
10531051
)}
1054-
{this.columns(
1052+
{this.rows(canvasWidth, groupHeights, groups)}
1053+
{this.items(
10551054
canvasTimeStart,
1055+
zoom,
10561056
canvasTimeEnd,
10571057
canvasWidth,
10581058
minUnit,
1059-
timeSteps,
1060-
height
1059+
dimensionItems,
1060+
groupHeights,
1061+
groupTops
10611062
)}
1062-
{this.rows(canvasWidth, groupHeights, groups)}
10631063
{this.childrenWithProps(
10641064
canvasTimeStart,
10651065
canvasTimeEnd,

0 commit comments

Comments
 (0)