Serhii Kulykov
Serhii Kulykov
Note, we can use [`webkitdirectory`](https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/webkitdirectory) attribute for uploading folders - see the [Codepen](https://codepen.io/matuzo/pen/KOdpmq?editors=1111) illustrating how it works. While it allows to select folders, it **disallows** selecting individual files, so you...
Here's the current version of the File and Directory Entries API: https://wicg.github.io/entries-api/ It contains some examples of how to get the directories from the [drag and drop](https://wicg.github.io/entries-api/#html-data) (which will require...
The reason for this behavior is the fact that clearing the `input` element value in the web component does not dispatch `custom-value-set` event. The value change listener should still be...
Related issue in the web component: https://github.com/vaadin/web-components/issues/1278
The `HasEnabled` was added in #6787 which landed in 24.6.0. Closing.
This might be not needed if we fix vaadin/vaadin-radio-button-flow#67 and make sure that `setValue(null)` actually works.
Thanks @knoobie for explaining this. I don't have much to add, and IMO we should consider this issue a won't fix. Also, please note that the `vaadin-radio-group` web component generally...
The issue referenced above was transferred here: https://github.com/vaadin/web-components/issues/518
Placing `MenuBar` inside a `Tab` isn't a supported use case (generally, you shouldn't place interactive content in `Tab`). Consider using `TabSheet` and placing `MenuBar` inside the tab content (and not...
It's a bit weird that it worked before. I guess the reason might be related to the fact that in Vaadin 24, menu-bar renders buttons in light DOM and not...