Skip to content

Vaadin Flow Components V25.3.0-alpha7

Pre-release
Pre-release

Choose a tag to compare

@vaadin-bot vaadin-bot released this 29 Jul 07:43
ca5c70a

Vaadin 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

  • Chore:
    • Increase Web-Component version
    • Increase Web-Component version

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

      ColumnTextAlign only had the logical values START, CENTER and END, which flip with the layout direction. The web component now also accepts the physical left and right values (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() threw NoSuchElementException when nothing was selected in a vaadin-select. It now returns an empty string. getSelectedItem() now returns null instead of throwing when the value button has no item. Generated with Claude Code

Compatibility