Serhii Kulykov

Results 603 comments of Serhii Kulykov

Still getting the error for some reason, apparently the configuration needs to be updated. ``` Test run ended in failure: Misconfigured -- Unsupported OS/browser/version/device combo: OS: 'unspecified', Browser: 'iphone', Version:...

UPD: tests started using IPhone X Simulator with iOS 14.0 which seems to be the oldest one in the [configurator](https://saucelabs.com/products/platform-configurator). There was a timeout, I'll try to restart the build...

Overall the approach from the above comment seems doable but might require some changes. In particular, we need to remove hardcoded `flex-grow` from the [web component](https://github.com/vaadin/web-components/blob/ab4b3f4bb6d3e4ed413da191c2bd7873a671f6b6/packages/split-layout/src/vaadin-split-layout-mixin.js#L111) which would override `flex-grow:...

Confirmed, can be reproduced using the demo. https://cdn.vaadin.com/vaadin-grid/5.6.10/demo/#grid-columns-demos

Proper solution for this would require adding `selectable` to `ItemMixin`: https://github.com/vaadin/web-components/issues/421 and then set it to `true` in case of `vaadin-context-menu-item` when using `items` property and `false` otherwise. I'll create...

This will be solved in base styles using `--vaadin-item-checkmark-display`. We can consider using it in Lumo too.

Reopening as this is a valid use case requested by multiple customers and discussed internally as V25.0 candidate. API proposal: `noAutoExpand` on the `vaadin-side-nav-item` (similar to `autoExpandHorizontally` in MSCB). For...

Workaround confirmed to work with the Flow counterpart - call `patchItem()` for every child item that needs it. ```java @Route("vaadin-side-nav/side-nav-test") public class SideNavPage extends Div { public SideNavPage() { setMaxWidth("400px");...

> If I manually give each one the same name, then the internal elements get unchecked but there's nothing that removes the checked attribute from the parent component which means...

> Could a MutationObserver somehow detect when the other button is no longer checked? Probably not. There are no attributes that would change on the `` when toggling its checked...