Nikhil Rao

Results 61 issues of 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...

enhancement

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' ) ```

bug

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...

feature request

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...

feature request

https://www.framer.com/motion/ would be cool to have animations builtin

feature request

Currently we only support uploading one file at a time. We should expand this to handle many file uploads.

feature request

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.

enhancement

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...

bug

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...

enhancement

Currently the Markdown component cannot be custom-styled. We should support custom styles similar to https://react.email/docs/components/markdown

enhancement
good first issue