John S
John S
What follows is a bit of a guess, but I believe that using Transcrypt is going to require persisting the Python code locally, running Transcrypt as an external process (perhaps...
I believe I just ran into this issue as well, though in my case it may be bundler related. Oddly enough, it works correctly with Parcel v1, but not with...
I was wanting to use dataclasses as a way to document props for React components, but not being able to use them without default values does make it less appealing.
Not sure if it's related, but I may have run into a [similar issue](https://github.com/floating-ui/floating-ui/discussions/1917) to this with the @floating-ui library that is used by Mantine's Tooltip React component.
I did some more digging in the @floating-ui library and found that the module [useFloating.ts](https://github.com/floating-ui/floating-ui/blob/08371b9b707f38172848457ad09a1432e22000f1/packages/react-dom-interactions/src/useFloating.ts#L16) is exporting a name that is the same as one that is being imported and...
@davidedelvento I've been going through the same scenario as you. I started with the Transcrypt React demo and have been expanding it from there. I'm not using JSX for 2...
As a follow-up, I started using parcel-builder and I now just do this to import JS modules: ``` React = require('react') ReactDOM = require('react-dom') ``` If the JS module exports...
In case anyone else is trying to use JSX in React with Transcrypt, it took me a while to figure out how to make it work so I'll leave this...
I can not seem to get the above to work on Windows. If I manually convert the jsx file from the command line: ``` type app.jsx | jsx-transform --factory createElement...
I just created a PR that adds the `start` and `end` arguments to the Transcrypt version for both `startswith` and `endswith` methods. I didn't address the potential efficiency issues of...