Vaadin Flow Components V25.3.0-alpha7
Pre-releaseVaadin Flow Components 25.3.0-alpha7
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 25.3.0-alpha6
Changes in All Components
Changes in vaadin-charts-flow
- New Features:
-
⧉ Add solid gauge and tooltip options for activity gauge. PR:9776
The Charts API could not reproduce the Highcharts multiple-KPI / activity gauge, because a few standard Highcharts options were missing from the typed model. This adds them: -
PlotOptionsSolidgauge:radius,innerRadius— place each series' arc in its own concentric ring (the defining feature of the chart) -Tooltip:fixed,position— pin the tooltip to a fixed spot -Style:textAlign— align tooltip text A new demo page (SolidGaugeMultipleKPI) reproduces the Highcharts multiple-KPI gauge using only the typed API. The FontAwesome ring icons from the original demo are omitted: they require a chart render event / SVG renderer, which Flow does not expose. Part of vaadin/web-components#1768 --- 🤖 Generated with Claude Code ---------
-
Changes in vaadin-grid-flow
- New Features:
-
⧉ Support left and right in grid ColumnTextAlign. PR:9793. Ticket:2879
ColumnTextAlignonly had the logical valuesSTART,CENTERandEND, which flip with the layout direction. The web component now also accepts the physicalleftandrightvalues (vaadin/web-components#12233), so this PR adds them to the enum:java grid.addColumn(Person::getAge).setTextAlign(ColumnTextAlign.RIGHT);---------
-
Changes in vaadin-select-flow
- Breaking Changes:
-
⧉ Return empty string from SelectElement.getSelectedText() if no item selected. PR:9782. Ticket:1056.
SelectElement.getSelectedText()threwNoSuchElementExceptionwhen nothing was selected in a vaadin-select. It now returns an empty string.getSelectedItem()now returnsnullinstead of throwing when the value button has no item. Generated with Claude Code
-
Compatibility
- This release use Web Components listed in Vaadin Platform 25.3.0-alpha7
- Tested with Vaadin Flow version 25.3.0-alpha6