Vaadin Flow Components 24.8.6
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.8.5
Changes in All Components
- Chore:
- ⧉ Increase Web-Component version
Changes in vaadin-markdown-flow
Changes in vaadin-spreadsheet-flow
- Fixes:
-
⧉ Use new custom editor if editors are updated
-
⧉ Improve custom editors internal structure to prevent NPE errors (#7755). PR:7773
-
⧉ Prevent trying to remove already removed
Sometimes, the call to
removeCellCustomEditor
can be done to a widget already removed from its parent, which causes a client-side error. This change try to address that with some refactor on the custom editors internal map. The refactor aims to replace the keys that currently refer to the cell address with the editor ID itself. That way, in case the same editor is shared by more than one cell, the sameSlot
will be used. With the current logic, more than oneSlot
element would be created for the same editor, which could cause issues like, the editor not being shown because it was moved to the otherSlot
parent.
-