You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to leverage React 19 in my app which uses Blueprint in order to benefit from the React compiler, other performance improvements, and the new hooks.
Currently there are still a lot of use cases of ReactDOM.render in the codebase which react 19 dropped support of. All of these need to be migrated to use createRoot
Currently there are still a lot of use cases of ReactDOM.render in the codebase which react 19 dropped support of. All of these need to be migrated to use createRoot
I just had a quick scan through the repository and it looks like all the references to ReactDOM.render are either in tests/documentation, or they can be replaced on your app side if you provide a domRenderer prop to the relevant component. So I don't think this is a blocker, but it would be nice if Blueprint could either update to use the updated createRoot method by default, or provide an automatic backwards-compatible implementation.
Environment
"@blueprintjs/core": "^5.11.0"
Feature request
I want to leverage React 19 in my app which uses Blueprint in order to benefit from the React compiler, other performance improvements, and the new hooks.
Blueprint currently requires:
I can use the beta compiler runtime until Blueprint can upgrade:
Examples
The text was updated successfully, but these errors were encountered: