Yuriy Yevstihnyeyev
Yuriy Yevstihnyeyev
We need to figure out if it is a problem in `avatar-group` and `menu-bar`.
We can consider implementing this behaviour directly in grid (reorder elements in the DOM on drop).
It's a known browser-specific bug that doesn't require a breaking change. Will probably be fixed later in v23+.
Could be related https://github.com/vaadin/web-components/issues/1060.
Dear @stefanuebe, Could you please provide a use-case where such functionality would be needed?
We could find the way of properly announcing icons. Take a look at the existing solutions.
Let's split the task into two parts: - the theming changes - supporting custom file list
Simplified reproducible example: ``` public class BugPage extends Div { String draggedItem; public BugPage() { TreeGrid grid = new TreeGrid(); grid.addHierarchyColumn(item -> item); // DATA TreeData treeData = new TreeData();...
Without D&D logic it would look like this: ``` TreeGrid grid = new TreeGrid(); grid.addHierarchyColumn(item -> item); // DATA TreeData treeData = new TreeData(); treeData.addRootItems("A", "B", "C"); treeData.addItems("B", "B1"); TreeDataProvider...
@mshabarov, it seems that issue could be fixed on the Flow side.