Conduitry
Conduitry
Do you have a REPL showing what you're trying to do now? This sounds like #7696, which is related to how reactivity works.
The core problem here is that we want the functions exported from `'svelte'` to be real, regular functions. There's nothing that `setContextReactive` or `getContextReactive` could be defined as that would...
The performance should be improved in 3.50.0.
They don't need to add a prop for every action. The action itself can be passed in as a prop. ```svelte export let action; whatever ``` The argument for the...
Why is this code ever getting called with neither a `target` passed in to the constructor nor `current_component`/`parent_component` being set? If it's one Svelte component trying to use another pre-compiled...
I'm assuming this doesn't support any sort of interactivity between the component and the slots you pass to it? I think the main thing I'm worried about here is forcing...
_Maybe._ I'd prefer in general not to add compiler options though - and it feels like most of this feature already exists, just as part of the private `$$slots` prop....
I'm a little uncomfortable having something called `svelte/html` also export types for `` special elements and (to a lesser extent) directives like `on:xxx` and `bind:xxx`. Is there another name we...
Everything seems to be switching between "Alice" and "Bob" correctly for me when I select options in the first dropdown in your REPL. What are you doing and what are...
`onwarn` is currently being used exclusively for warnings that are coming from the Svelte compiler, and it would feel a bit weird to me to be using it for this...