adiGuba

Results 109 comments of adiGuba

Thanks ! I think it's good now. Tests are OK

Yes it can also have some other advantage, like this : ``` {#if @hidden state} 1 2 3 {:else} 4 5 6 {/if} ``` => All div are on the...

I have made a partially working prototype. **@display** to show/hide elements by using **display:none** on them : ``` {#if @display state} Content to show/hide {/if} ``` **@show** to show/hide elements...

The style directive can not be used with svelte's transition, so the element will be visible/hidden immediately. I know it's possible to use transitions in CSS, but it's less convenient...

Hello, For the first solution, you can use the restProps to detect snippets : ```svelte {#snippet optA()} A {/snippet} {#snippet optB()} B {/snippet} {#snippet optC()} C {/snippet} ``` Example here...

> Leaving aside the feature request itself (not really sure how such a thing could work, need to think on it), Just a few simple ideas to create a link...

> What does it even mean? Unacceptable value of format? Use type like "big" | "medium" | "small". Yes, like I say I known that some things can be done...

> Regarding a specific tree structure, this is what slots/snippets are for - the required tree is completely inside the component and user content is inserted into it. Snippet are...