reacton icon indicating copy to clipboard operation
reacton copied to clipboard

A pure Python port of React for ipywidgets

Results 17 reacton issues
Sort by recently updated
recently updated
newest added

Hello! I wanted to use Reacton in a project where the version of typing_extensions is pinned to 3.7.4.1 (python3-typing-extensions package from Ubuntu 20.04). However, due to ParamSpec usage, reacton requires...

Hello! I'm not sure if this issue should be opened in reacton or ipyvuetify repository. When I try to use Vuetify transition groups, I get an error in browser console...

This PR adds the possibility to use a function as inital value for `use_state`. This is in line with how React works: https://react.dev/reference/react/useState#usestate When it's costly to calculate the initial...

When no internal state changes happens on the Python side, we will not re-render even though the widget state may have changed. This means that the widget model and our...

In 9502163 and 03a9b39 we implemented batch updates from on_ change handlers. This caused a change handler that set multiple states to be changed to not trigger a render multiple...

This happened when we could re-render, and there was a function component in the render tree that wouldn't need a re-execution. It would then reconciliate with the old element data...

When trying to update a numeric slider (only tested on `IntRangeSlider`) and the min or max value is update, it causes a `traitlets.traitlets.TraitError`. Case where new min > current max:...