Konva v7.0.0 Release Notes

Release Date: 2020-06-23 // almost 4 years ago
    • ๐Ÿ’ฅ BREAKING inherit option is removed from visible and listening. They now just have boolean values true or false. If you do group.listening(false); then whole group and all its children will be removed from the hitGraph (and they will not listen to events). Probably 99% Konva applications will be not affected by this breaking change.
    • ๐ŸŽ Many performance fixes and code size optimizations. Up to 70% performance boost for many moving nodes.
    • ๐Ÿ—„ layer.hitGraphEnabled() is deprecated. Just use layer.listening(false) instead
    • ๐Ÿ‘ Better support for font families with spaces inside (like Font Awesome 5).
    • ๐Ÿ›  Fix wrong dblclick and dbltap triggers
    • ๐Ÿ—„ Deprecate Konva.FastLayer. Use new Konva.Layer({ listening: false }); instead.
    • ๐Ÿšš dragmove event will be fired on Konva.Transformer too when you drag a node.
    • ๐Ÿšš dragmove triggers only after ALL positions of dragging nodes are changed