Is there a way to include slotted html tag inside shadow root? Default slotted tags are rendered outside Shadow Root while there is a reference to them inside it. My goal is to use customElement scoped style ( alert.css ) to style also slotted tags.
index.html
<custom-alert types="col-5 btn-default" name="alert">
<h3 slot="slotname">I'm not blue :(</h3>
<p slot="slotname">Nullam pretium neque a risus tincidunt, et semper augue.</p>
</custom-alert>
alert.svelte
<style>
@import "../css/alert.css";
</style>
<div class="alert">
<div>
<slot name="slotname"></slot>
<h3>Yes I'm Blue :)</h3>
</div>
<i class="bi bi-x" data-bs-dismiss="alert" aria-label="Close" role="button"></i>
</div>