Results 7 comments of 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...