reactpy
reactpy copied to clipboard
It's React, but in Python
### Current Situation Currently nested imports cannot be resolved, such as Bootstrap `Navbar.Toggle` ```python bootstrap = reactpy.web.module_from_template( "react", "react-bootstrap", resolve_exports=True ) toggler = reactpy.web.export(bootstrap, "Navbar.Toggle") ``` ### Proposed Changes Update...
### Discussed in https://github.com/idom-team/idom/discussions/534 If the import sources of two web modules are different, but have the same package scope, then they should be allow to be children of each...
### Discussed in https://github.com/idom-team/idom/discussions/921 Originally posted by **numpde** February 9, 2023 In this [intro example](https://idom-docs.herokuapp.com/docs/guides/getting-started/index.html#section-1-installing-idom), there is an offset before the word "Sample" that doesn't seem to belong there. , calling `ReactDOM.render` on the same...
Turning on this option should make the client display React errors on page (not just in console) # Implementation Details Build the ReactPy client in debug mode and in production...
### Discussed in https://github.com/idom-team/idom/discussions/798 Originally posted by **Archmonger** August 10, 2022 Currently, due to the addition of our script tag, there is now the potential of VDOM/DOM mismatches. This can...
### Current Situation There currently are no type hints for `idom.html` props. ### Proposed Actions We should probably long-form type-hint them for developer's convenience. We can find all available props...
### Current Situation Currently many public facing type annotations are not exercised. One way to do this might be to run MyPy against our test suite. However this makes it...
### Current Situation React has the ability to define class based components while we don't. In some situations, components look a lot cleaner when organized in this fashion. Additionally, it...