reactpy icon indicating copy to clipboard operation
reactpy copied to clipboard

It's React, but in Python

Results 158 reactpy issues
Sort by recently updated
recently updated
newest added

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

flag-good-first-issue
priority-3-low

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

type-bug
priority-2-moderate

### 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. ![Screenshot...

type-docs
flag-good-first-issue
priority-3-low

### Current Situation Currently the configuration for reconnecting WS is fairly limited. ### Proposed Changes We can potentially add settings for `MAX_TIMEOUT` , `MAX_RETRIES`, and/or `RECONNECT_INTERVAL`. Alternatively, allow the user...

type-feature
priority-2-moderate

I have no idea why this is. Other packages like Material UI seem to handle this fine, but Victory doesn't. According to the [React docs](https://reactjs.org/docs/react-dom.html#render), calling `ReactDOM.render` on the same...

type-bug
priority-3-low

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

priority-3-low

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

priority-3-low
type-investigation

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

type-feature
priority-3-low

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

flag-good-first-issue
priority-3-low
type-tests

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

type-feature
priority-3-low