Nikhil Rao
Nikhil Rao
As a follow up to #596 we should rethink the design and potentially compile the on_load events directly into the page's initial event queue. This should allow them to follow...
Currently escaping quotes in string props is not working always. The following prop doesn't compile correctly: ```python pc.text( "hello", font_family='"Fira Code", Menlo, Consolas, monospace' ) ```
Currently the only way to call another event handler is to return it and create a chain. However this leads to poor code reusability in many cases. Example in #596...
Currently the entire page is compiled into a single giant component. For larger apps, this leads to poor performance, as each state updates re-renders the entire page. This is most...
https://www.framer.com/motion/ would be cool to have animations builtin
Currently we only support uploading one file at a time. We should expand this to handle many file uploads.
Currently the custom api routes don't have access to the state. We need to rethink this because most APIs will want to return something related to the state.
There are a couple places in the code where we circumvent circular imports by importing within a function. We should refactor to avoid this and move all imports to the...
Currently all the JS templating is done manually in Python and f-string formatting. It would be nice to use something like Jinja that was designed for this very task. As...
Currently the Markdown component cannot be custom-styled. We should support custom styles similar to https://react.email/docs/components/markdown