Releases: reactive-python/reactpy
0.37.1-a1
0.37.0
What's Changed
- docs for components sharing state by @acivitillo in #571
- support keys in HTML fragments by @rmorshea in #683
- Add Use Context Hook by @rmorshea in #585
- reset schedule_render_later flag after triggering by @rmorshea in #688
- reorganize creating-interfaces + add info on fragments by @rmorshea in #685
- Re-organize docs + start using "Keep a Changelog" style by @rmorshea in #689
- load import source in effect by @rmorshea in #691
New Contributors
- @acivitillo made their first contribution in #571
Full Changelog: 0.36.3...0.37.0
0.36.3
0.36.2
0.36.1
Includes bug fixes and renames the configuration option IDOM_WED_MODULES_DIR
to IDOM_WEB_MODULES_DIR
with a corresponding deprecation warning.
Closed Issues
Merged Pull Requests
0.36.0
This release includes an important fix for errors produced after #623 was merged. In addition there is not a new http.script
element which can behave similarly to a standard HTML <script>
or, if no attributes are given, operate similarly to an effect. If no attributes are given, and when the script evaluates to a function, that function will be called the first time it is mounted and any time the content of the script is subsequently changed. If the function then returns another function, that returned function will be called when the script is removed from the view, or just before the content of the script changes.
Closed Issues
Pull Requests
0.35.4
0.35.3
0.35.2
This release includes several bug fixes. The most significant of which is the ability to change the type of an element in the try (i.e. to and from being a component) without getting an error. Originally the errors were introduced because it was though changing element type would not be desirable. This was not the case though - swapping types turns out to be quite common and useful.