Vaadin Flow Components V24.3.10
Vaadin Flow Components 24.3.10
This is a release of the Java integration for Vaadin Components to be used from the Java server side with Vaadin Flow.
Changes in Flow Components from 24.3.9
Changes in All Components
- Chore:
- ⧉ Increase Web-Component version
Changes in vaadin-button-flow
Changes in vaadin-charts-flow
- Fixes:
-
⧉ Mark
DataSeriesItemSankeyas customized to ensure its proper serialization (#6216) (CP: 24.3). PR:6217Without this call, the object would be serialized as an array containing two value from
bean.getLow()andbean.getHigh(), which are not usually set on the Sankey type, so the result would be[null, null], instead of the actual JSON string expected (containing thefrom,to, andweightkeys). The Sankey example in the IT works because it usessetDataLabels, which in turn callsmakeCustomizedand then makes the instance to be proper serialized.
-