Changes since 24.8.9
Fixes
-
Always wait for navigated event for title (#22494)
Commit · Pull request · IssueWhen running with react-router always wait for vaadin-navigated event before updating the title.
-
Update old override (#22429) (#22435)
Commit · Pull request · IssueUpdate old platform version override when a dependency is added for the override. # Conflicts: # flow-server/src/test/java/com/vaadin/flow/server/frontend/TaskUpdatePackagesNpmTest.java
-
Apply preventDefault only to filtered events (#22294) (#22298)
Commit · Pull requestWhen preventDefault() or stopPropagation() is used with setFilter(), it now only prevents default behavior for events that match the filter. This allows for more granular control, e.g., preventing default only for space key while allowing tab key to function normally. The fix modifies ElementListenerMap to check for preventDefault and stopPropagation expressions and make them conditional when a filter is present.