resize-observer icon indicating copy to clipboard operation
resize-observer copied to clipboard

Polyfills the ResizeObserver API.

Results 18 resize-observer issues
Sort by recently updated
recently updated
newest added

Bumps [jsdom](https://github.com/jsdom/jsdom) from 16.4.0 to 16.5.0. Release notes Sourced from jsdom's releases. Version 16.5.0 Added window.queueMicrotask(). Added window.event. Added inputEvent.inputType. (diegohaz) Removed ondragexit from Window and friends, per a spec...

dependencies

Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. Commits 7efb22a 1.2.6 ef88b93 security notice for additional prototype pollution issue c2b9819 isConstructorOrProto adapted from PR bc8ecee test from prototype pollution PR See full...

dependencies

Bumps [tmpl](https://github.com/daaku/nodejs-tmpl) from 1.0.4 to 1.0.5. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=tmpl&package-manager=npm_and_yarn&previous-version=1.0.4&new-version=1.0.5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

Bumps [path-parse](https://github.com/jbgutierrez/path-parse) from 1.0.6 to 1.0.7. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=path-parse&package-manager=npm_and_yarn&previous-version=1.0.6&new-version=1.0.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

Currently the library only listens to mutations on the main document level. This means that any **non-user actioned** DOM changes inside a shadow root will not be noticed. Most of...

enhancement
Next
v4

Improve the comments in the code to allow for useful code hints in editors.

enhancement
help wanted
documentation
v4

When observing `device-pixel-content-box` incorrect values could be reported. This is due to pixel pixel rounding/snapping when `devicePixelRatio` is greater than 1. This issue is exaggerated when dragging elements across pixels....

enhancement

When a window is dragged across screens with different resolutions, no notification is fired when observing `device-pixel-content-box`. To improve this, use `matchMedia` API to watch for resolution changes. ```js matchMedia(`(resolution:...

enhancement
v4

Supporting added ResizeObserver features and improving the library, has increased the bundle size. As the specification is now at a stable state, it could be a good time to refactor...

v4

Currently the methods on the object are not set to be enumerable and the following code will print nothing. ```js const ro = new ResizeObserver(() => {}); for (let key...

enhancement
spec
v4