Description
Is your feature request related to a problem? Please describe.
Trying to install the react search-ui packages with react 19 fails due to mismatching peer dependencies. The search-ui packages declare react < 19
as peer dependencies. Installing is still possible via the --force
flag, but could cause issues for example in the CI, where we don't want to append --force
everywhere
Describe the solution you'd like
Change the peer dependencies of search-ui packages (that use react) to allow usage with react 19. See the upgrade guide, some changes might be required.
Describe alternatives you've considered
Forcing npm install with --force
or --legacy-peer-deps
works as a workaround but is not recommended by npm.
Additional context
I've tested my application with search-ui and react 19 and it works just fine. Might not apply to other use cases though.