TL;DR: I'm looking for slots but without shadow dom
I'm looking for a solution that should "change" something like:
<form-control>
element(s): like input, select, custom elements containing form elements
</form-control>
into something like:
<form-control>
<label></label>
<div>
element(s)
</div>
</form-control>
where form-control is the needed custom element; now specific for forms, but a general wrapper solution is a good thing to know
Solutions I think about:
Any idea will be appreciated!