yayza
yayza
> I can't figure out how to configure zod to make the `bold` property optional, without also adding `undefined` to the type of the property. The `.optional()` method seems to...
What about removing the styling and creating their equivalents in tailwind. Then allowing the use of `$$props.class` or `$$props.style` to override the defaults, eg: ```ts import type { DataHandler, Row...
This feature would be great to have, but I was wondering if in the meantime it was possible to manually define paths to folders I've already created and organized for...
> I'm not sure `proxy`/`proxify` functions are the best approach. They expose terms that ideally should only exist within Svelte internals. And the use of `$derived` wrapping a `$state` sounds...
https://github.com/sveltejs/kit/issues/14699
Wouldn't a utility function like this work for all three scenarios: ```ts export async function fresh(query: RemoteQuery) { if (browser && query.ready) { await query.refresh(); } return await query; }...
i feel like the fix would definitely be a dx improvement and in the rare case someone would really want to require an explicit arg (even if undefined) they could...