David Bieregger
David Bieregger
Also we should probably move to @solidjs/start package. Then let's get this merged first https://github.com/solidjs-community/solid-primitives/pull/585 and then I will do a followup pr that fixes the import.
Do you think it's worth the effort?
The goal is to make internalization as seamless as possible. So that when i use the `t` function i only have to pass following: ``` {t({name: "David"},"Hello {{ name }}!"}...
There is also a second issue, with nested translations, so eg: ``` function MyButton({tKey, tDefaultValue, ...}) { const [t] = useI18n(); return t(tKey, tDefaultValue) } ``` if the export encounters...
@Azq2 does this also fix the issues with ssr though?
Ok now, I've understood what you are doing here, but for my taste this is a bit too hacky. I would prefer a solution with an excessive use of contexts,...
If you need a solution to get csr with for working, you may use my implmentation: https://github.com/BierDav/suid-extensions You have to download the code and add it to your codebase. This...
Can you please provide a stackblitz or codesandbox project, so that we get more insigt in your problem. Maybe turning off SSR solves your problems. The `Select` component is not...
> please show a minimal sandbox reproduction, thank you ```ts const query = createQuery(()=>({queryFn: ()=> new Promise((resolve)=> setTimeout(resolve,10000))})) ``` Now open the dev tools and press restore loading when the...
@TkDodo to make it clear: In solid we don't have a `createSuspenseQuery` and as far as I understand `createQuery` is equevialent to `useSuspenseQuery` in React, because it uses `createResource` under...