Alexander Prinzhorn

Results 617 comments of Alexander Prinzhorn

> How am I supposed to know how the internals of how this:bind works? I'm probably the wrong person to ask, since Svelte and its reactivity clicked for me from...

> Another alternative would be to use the `onwarn` property that I believe rollup/vite/webpack-plugin-svelte support. It expects a function which you can use to filter out false positive warnings. Thanks,...

@baseballyama this issue is about defining _my own_ globals (equivalent to the eslint `globals` config), please re-read my original post.

This is very similar to https://github.com/sveltejs/svelte/issues/7450 and https://github.com/sveltejs/svelte/issues/7807 ``` Array.from(document.querySelectorAll('foreignObject')).map(e => e.namespaceURI) 0: "http://www.w3.org/2000/svg" 1: "http://www.w3.org/1999/xhtml"

My mental model has always been that a reactive declaration like `$: b = a * 2` defines `b` in it's entirety ("Here's my recipe for `b` and all the...

> My case is that I have a component which takes an object as a prop. As the user changes the object's values, they can either **Save** or **Cancel**. So...

@joaopaulobdac that depends on your architecture, I guess your parent component could wrap the value in a store and pass it down _without_ `bind`. At least that's a workaround for...

When `ResizeObserver` gets implemented in one way or another I'd love to see a compiler option with three possible options: 1. Default: use `ResizeObserver` where possible, fall back to the...

Interesting enough the RFC discussion doesn't have any "svg" in it https://github.com/sveltejs/rfcs/pull/13 but the [final RFC](https://github.com/sveltejs/rfcs/blob/master/text/0006-style-properties.md) does indeed say this > 🐃 It *would* be possible for someone to accidentally...

I don't think I understand your use-case at all, however: > Currently, to do multiple variables, you have to nest `{#key}` blocks which even after one gets annoying. Not necessarily,...