You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
but it is only emitted in onopentag. It should be removed to prevent its application to other elements.
Example :
In https://svelte-materialify.vercel.app/api/TextField/, the comment 'Slot for prepend inside the input.' should only be applied to <slot name="prepend" /> but is also applied to <slot />, <slot name="content" />, and on:focus.
The text was updated successfully, but these errors were encountered:
Hi @soft-decay!
I'm fix this issue in this commit 9a7bfc4. This commit based on refactoring branch, I'm add few simple tests for that, but it will be good if you can check fix on your examples and approve that this fix are correct.
in
onattribute
,lastComment
is comsumed (emitted and set tonull
):but it is only emitted in
onopentag
. It should be removed to prevent its application to other elements.Example :
In https://svelte-materialify.vercel.app/api/TextField/, the comment 'Slot for prepend inside the input.' should only be applied to
<slot name="prepend" />
but is also applied to<slot />
,<slot name="content" />
, andon:focus
.The text was updated successfully, but these errors were encountered: