v7.0.0 BREAKING CHANGE
resize-observer-polyfill
is removed from the library:
- all modern browsers support ResizeObserver API natively
resize-observer-polyfill
repository is abandoned
It means that starting from v7 you won't be able to use the build with polyfill:
// WRONG: there is no such file starting from v7
import ResizeObserver from 'react-resize-detector/build/withPolyfill';
// CORRECT
import ResizeObserver from 'react-resize-detector';