Abdelrahaman Shehata
Abdelrahaman Shehata
> Hi folks, it is indeed possible to delay loading that code until the sign in methods are called. The popup and redirect family of methods take an optional third...
> @abdo643-HULK yep, that's one of the reasons why the `_shouldInitProactively` functionality exists Where can I find this function ? I am looking through the source code of the auth...
It is allowed and most browsers support it. https://stackoverflow.com/questions/23667208/calc-not-working-within-media-queries
Here is a working version: https://svelte.dev/repl/e6c8287c4a454fb8b8cfa0d474a5f34d?version=3.46.6. The reason is the slot doesn't get passed on to the Icon component because you didn't declare as named slot and because the slot...
There are an issue about slots: https://github.com/sveltejs/svelte/issues/1689
If svelte doesn't recognise a named slot it won't render it and that's what happend. And passing it as a prop doesn't work because the compiler will complain about slot...
There are a lot of issues around how svelte components behave when compiled to web-components and one of those issues is variable naming: https://github.com/sveltejs/svelte/issues/3852. There's a plugin that might help:...