react-calendar-timeline
Advanced tools
Changelog
0.26.3
onItemDeselect
#350 @ilaiwionItemDeselect
is not triggered as expected for several item clicks #350 @ilaiwiupdate to node-sass@4.12.0
for newer versions of node.
Changelog
0.26.1
you can as well solve the issue without upgrading by adding the following style
.react-calendar-timeline .rct-horizontal-lines {
-webkit-user-select: none;
-moz-user-select: -moz-none;
-ms-user-select: none;
user-select: none;
}
Changelog
0.26.0
onItemDrag
prop to <Timeline />
#517 @bettymakes<InfoLabel />
in favour of allowing for custom component to be rendered on move or resize. Check out the demo in demo/app/demo-custom-info-label
for an example on how to display your own custom info label or this example.