File tree Expand file tree Collapse file tree 3 files changed +14
-10
lines changed Expand file tree Collapse file tree 3 files changed +14
-10
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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" : {
Original file line number Diff line number Diff 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 ,
You can’t perform that action at this time.
0 commit comments