Skip to content

Vaadin Flow 24.0.0.rc2

Pre-release
Pre-release

Choose a tag to compare

@vaadin-bot vaadin-bot released this 03 Mar 14:04
· 136 commits to 24.0 since this release
ce6da63

Changes since 24.0.0.rc1

All changes

New features

Fixes

  • Parent theme should not trigger a re-bundle (#16088)
    Commit · Pull request

    Parent theme key in theme.json is skipped when theme.json content is analysed, because having a parent theme shouldn't trigger a re-bundle per se. Follow-up for #16004

  • Use setAttribute in setAriaLabel method
    Commit · Pull request

    This is a follow-up of #16081, where a bug on HasAriaLabel#setAriaLabel was found. It turns out that the current implementation uses getElement().setProperty() to set the aria-label to the component, but since the value of ElementConstants.ARIA_LABEL_PROPERTY_NAME is in the Kebab Case format (aria-label) instead of the Camel Case one (ariaLabel), it doesn't correctly set the property.