Vaadin Flow 9.0.0.alpha10
Changes in Flow from 9.0.0.alpha9
-
New Features:
-
⧉ Provide dev mode gizmo disable parameter. PR:12028. Ticket:3356
Add a new configuration parameter to disable the dev mode gizmo (debug window) when needed.
-
⧉ Introduce event.target element to DOM event. PR:11992. Ticket:3356
Makes is possible to obtain the Element instance on the server side that corresponds to
event.target
for a DOM event. The mapping needs to be explicitly enabled with DomListenerRegistration.mapEventTargetElement() for it to work. Next steps would be to introduce an API to certain component events that leverage the API, or generalizing the API so that one could give out an JS string that would be mapped instead ofevent.target
. -
⧉ Add clean-frontend goal to maven plugin. PR:11968. Ticket:8885
Add a goal to clean frontend files handled by the framework. Most files are removed, but package.json is only cleaned of framework managed changes.
-
-
Fixes:
-
⧉ Check that numeric value exists. PR:12042. Ticket:12041
Check that a value exists for buildIdentifier before parsing integer.
-
⧉ Update polyfill version. PR:12044
Update the construct-style-sheets-polyfill to get latest fixes. Relates to #11811
-
⧉ Make frontend build info message properly shown for mobile. PR:12015. Ticket:11650