Jamie Birch

Results 104 comments of Jamie Birch

Some possibly relevant issues: * https://github.com/nodegui/react-nodegui/issues/341#issuecomment-792515899 * https://github.com/nodegui/react-nodegui/issues/342 * https://github.com/nodegui/nodegui/issues/592#issuecomment-792264782

I read that esbuild's plugins API is not stable yet, so using esbuild with Svelte would be brave. I'll wait at least until SvelteKit is out, which I believe may...

## The set of QWidgets supported by Svelte NodeGUI > The docs list only a number of very basic widgets. > These seem to be implemented in React NodeGUI, and...

> What I try to do is also challenging: I would like to implement a mail client on a quality and usability level on par with (or better than) Thunderbird...

Thank you! Our webpack config is quite simple: https://github.com/nodegui/svelte-nodegui/blob/main/demo/webpack.config.js I'm unfamiliar with Vite, but to port it to something like Rollup, I think the main thing that would be needed...

> So I just set `@nodegui/nodegui` as externals, and it could be left in `node_modules` without being bundled which make the Application succeed to be executed. 🤣🤣🤣 It's a valid...

I've found the reason for the issue. **Svelte is compiling the attributes from camel-case to lower-case before passing them to Svelte NodeGUI.** This is something I'd thought we'd solved once...

A horrible workaround for now if it's blocking you: ```svelte // BetterText.svelte import type { NSVElement, RNText } from "@nodegui/svelte-nodegui"; let ref: any; export let wordwrap: boolean = false; //...

Me neither. Could you try deleting the package-lock.json and reinstalling the dependencies and seeing whether it improves things? If not, no idea still 🤷‍♂️ never happened on my setup.

See this duplicate issue: https://github.com/nodegui/svelte-nodegui-starter/issues/6 May or may not be due to package lock or version ranges stated. Best to fix it at the same time as fixing #72.