Releases: ecomfe/zrender
Releases · ecomfe/zrender
5.0.0-beta.2
release: 5.0.0-beta.2
5.0.0-beta.1
release: rename alpha.3 to beta.1
5.0.0-alpha.2
release: 5.0.0-alpha.2
4.3.2
5.0.0-alpha.1
release: 5.0.0-alpha.1
4.3.1
4.3.0
- [Feature]: Support setting
draggable
onGroup
. - [Feature]: Support converting coordinates from the base on one DOM element (left-top corner) to another DOM element. (Not exposed as a public API yet.)
- [Fix]: Enable
subPixelOptimize
works whenlineWidth
is'0'
/null
/undefined
(apache/echarts#11874 apache/echarts#11891).
4.2.0
- [Feature]: Support dragging outside of the zrender boundary. That is, while dragging,
mousemove
andmouseup
event will continue to be fired when the pointer is out of the zrender area. And enable to drag an element outside the zrender boundary if the element is set asdraggable: true
. That is important for the improvement of the user experience when dragging something near the boundary without being terminated unexpectedly. Meanwhile, the eventglobalout
will not be fired until the pointer released if having been dragging outside of the zrender boundary. This is essentially a break change but probaly won't bring effects in the most cases. If users need to confine a draggable element inside the boundary of zrender, they should better do collision detection between the element and the boundary. More details can be checked in #547. - [Fix]: Clear text when mouse leaves. (#535)
- [Fix]: Fix removing el may have error when text is set to none. (#542)