Geoff Cox
Geoff Cox
I think have a workaround. I created a Svelte component that I named SlotFragment.svelte. It conditionally renders a default slot. ```svelte {#if $$slots.default} {/if} ``` For example when composing components,...
@Thuhaa I would have the split with divs that have primary and secondary and not change them. Instead, I would use the svelte:component technique to swap in the content into...
IMO, create-react-app has a ton of magic to them that would distract from learning recoil. My aim was as simple a project as possible. I will look into what it...
I've been thinking about simultaneous multi-splits too (like for column headers in a table). Having a dynamic number of splits at once (not nested) is very difficult with my current...
Thank you so much for the PR with detailed explanation!
I do expect callers to have scrollable content within their panes. The divs created by the split control are set to width and height of 100% to fill the area....
@PlkMarudny Very interesting. The iframe technique does feel heavy. A ResizeObserver-based measurement might be much faster. I think you should propose this to sveltejs. I want to try and have...
This isn't an issue with using a set of radios in the UI, but in writing a Svelte 5 component that wraps a radio input and can expose the same...
+1 This happens for tags as well. Maybe the compiler continues parsing for svelte within template strings. ``` let example = ``; {example} ```
I guess I'll need to implement my own mouse handling and then directly manipulate the shapes on the stage & layer. That should work out given I don't have to...