Streamlit_elements onChange event not working on Streamlit 1.34

Well, it looks like I was able to use a workaround similar to the previously mentioned topic โ€“ I replaced the import in /streamlit_elements/core/callback.py

# from streamlit.components.v1 import components
 from streamlit.components.v1 import custom_component as components

This helped to restore the previous functionality.
I hope the developers will address this issue in future releases.

3 Likes