Serhii Kulykov
Serhii Kulykov
Yes, the only other component which is interactive in readonly mode is `vaadin-multi-select-combo-box` where we have this: https://github.com/vaadin/web-components/blob/af47011a1e577744e022c8b085b17bc71fca40cd/packages/multi-select-combo-box/theme/lumo/vaadin-multi-select-combo-box-styles.js#L110-L113
@jouni We could probably revert grid container change as in introduced another problem: #3570
The approach we have chosen with `[part="overflow-button"]` is pretty much the same as with any other Vaadin components (e.g. toggle button, clear buttons, rich text editor toolbar buttons etc). The...
Sounds good to me. That might be one of the ideas for the next minor release.
We added `slot="overflow"` in #4687, but supporting a custom overflow button would still require some more tweaks. In particular, currently the `dots` element is always added. Also, opening the submenu...
Related to #1031
Works for me. Would be nice to see if at least a code snippet to reproduce the issue.
> Type into field to filter until only one item is available I see. Now it only gets selected once you entered all the characters. Otherwise, it isn't.
Note: we should also ensure that `TimePicker` and `MultiSelectComboBox` work consistently. Currently, these components do not open overlay on label click, unlike `ComboBox` and `DatePicker` (which have that handled by...
Currently the components work differently due to how they are implemented: - `vaadin-combo-box` has `_onHostClick()` logic that specifically opens on label click. Clicking the label while opened causes the overlay...