Tomi Virkki

Results 20 comments of Tomi Virkki

Weren't planning on including these APIs in the first release. The current API is a subset of ``'s [API](https://www.webcomponents.org/element/PolymerElements/paper-listbox) which also doesn't include `value` or these other form field -properties...

If this can't be properly fixed in V23, we could consider temporarily moving the [styles](https://github.com/vaadin/web-components/blob/2b0859f55b105278acf722dc25f8f5a5a52bbcc8/packages/grid/theme/lumo/vaadin-grid-styles.js#L399-L407) to the [`checkbox` package](https://github.com/vaadin/web-components/blob/master/packages/checkbox/theme/lumo/vaadin-checkbox-styles.js) to make sure they're applied regardless of the import order.

Similar to https://github.com/vaadin/web-components/issues/3424 which was [fixed](https://github.com/vaadin/web-components/pull/3450) by applying the `aria-lebel` attribute only on expandable rows.

Consider if this needs a new major release (breaking change)

Related https://github.com/vaadin/web-components/issues/1563

A generator might be an overkill for this purpose. Since a column/column group can only have 1 header cell (+ 1 footer cell), it might be enough to have a...

Here’s a super hacky workaround :) Note that `/deep/` selector is deprecated and probably will not work for long anymore. Perhaps the polyfill can still handle it even after the...

Just to clarify, if you set the menubar items as: ```js menuBar.items = [ { text: 'First' }, { text: 'Second' }, { text: 'Third' }, { text: 'Fourth' },...

I don't have access to a physical iOS device, and unfortunately, the iOS simulator does not support VoiceOver so I can't verify it but this might relate to that neither...

> ...if it could be determined by checking whether the itemHasChildrenPath or expandedItems properties have been set. You can have a hierarchical `` without explicitly setting `itemHasChildrenPath` (it has a...