Tomi Virkki

Results 63 comments of Tomi Virkki

Even with lazy loading ComboBoxes, you'd probably want to have the [first page pre-loaded](https://github.com/vaadin/web-components/issues/1264) when this mode is enabled.

Seems that in case (or if you drop outside the browser window) a "dragend" event never gets dispatched, which is against how HTML DnD should work: https://developer.mozilla.org/en-US/docs/Web/API/HTML_Drag_and_Drop_API/Drag_operations#finishing_a_drag That would suggest...

We discussed this internally and it might make the most sense to have an outside click only close the topmost overlay which is closable with an outside click (same with...

It might not be easy to make randomly stacked popovers and dialogs work nicely together because Popover currently uses its [own global click listener implementation](https://github.com/vaadin/web-components/blob/9c4fd06452849235f2f7933b27b03fe66693aa9a/packages/popover/src/vaadin-popover.js#L494-L496). Perhaps we could make overlay...

Here's an example on how this could be implemented with help of `activeItem` https://glitch.com/edit/#!/vigorous-stream

Related issue https://github.com/vaadin/flow-components/issues/3796

As a workaround, you can currently change the icon with the following CSS: ```css vaadin-menu-bar-button[aria-haspopup]:not([slot='overflow'])::part(suffix)::after { content: var(--lumo-icons-plus); } ```

Related to https://github.com/vaadin/web-components/issues/1073 and https://github.com/vaadin/web-components/issues/1045

This repository now includes the gestures module, so the dependency is no longer there. Closing as no longer relevant.

Also note that Polymer's `` will continue to work as before (assuming it gets imported). If someone specifically wants to use `` with `` they can still do so by...