Hunter Perrin

Results 150 comments of Hunter Perrin

@siddhsql The successor to MDC-Web is [Material Design Web Components](https://github.com/material-components/material-web), but their library right now is _very_ limited. It also implements Material 3 (Material You), which probably makes it harder...

Thanks for the kind words! :) I love to hear when people find my libraries helpful.

This repo hasn't been updated in a few years. You can install it, but it's probably not going to be a good experience without a lot of work to update...

This seems to happen when _any_ window is blurred, not just the frameless ones, so here's how I adapted the solution from @liiiiiiiiiiiir ```js app.on('browser-window-blur', () => { const windows...

Svelte 5 requires typescript. The `svelte-preprocess` should handle it though. Are you using that plugin in Vite?

This appears to be resolved in the latest version. Let me know if you keep seeing this issue.

Also, Owlfiles is a mobile app for both Android and iOS that supports WebDAV (as a client). It's what I recommend in the guides on QuickDAV.

I just hit this issue trying to restore from a backup. The SQL that caused it is: ```sql CREATE UNIQUE INDEX index_preview_cards_on_url ON public.preview_cards USING btree (url); ```

That package just pulls in every other package. It's not necessary unless you need the bare.css file that has everything.

So whether you use dependency or devDependency depends on your setup. For most Svelte projects, you'll use devDependency, since there's a build step that packages everything. But you may also...