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

A polyfill for the Resize Observer API

Results 58 resize-observer-polyfill issues
Sort by recently updated
recently updated
newest added

The polyfill is currently only monitoring the global `window` and `document` objects. However, this is not enough to support shadow roots and same-origin iframes that are supported in the spec.

There are two new fields returned by the ResizeObserver that are going to eventually deprecate the initial `contentRect` field: https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserverEntry

Bumps [http-proxy](https://github.com/http-party/node-http-proxy) from 1.17.0 to 1.18.1. Changelog Sourced from http-proxy's changelog. v1.18.1 - 2020-05-17 Merged Skip sending the proxyReq event when the expect header is present [#1447](https://github.com/http-party/node-http-proxy/issues/1447) Remove node6 support,...

dependencies

Hi there, first of all thanks for the polyfill, it's very useful! I am noticing the browser support widget is broken in the README so I cannot really see which...

Type used by the polyfill is not compatible with DOMRectReadOnly that is in TypeScript so you can use this this type. (the error when using this type is that toJSON...

Under a jsdom environment `Element` is not an `Object`. ``` if (typeof Element === 'undefined' || !(Element instanceof Object)) { return; } ``` https://github.com/que-etc/resize-observer-polyfill/blob/master/src/ResizeObserverSPI.js#L76 Probably simply just removing the later...

Hi, First of all, thanks for the excellent plugin,I have applied it to my project.In your code,you use "transitionend" to listen for "CSS transition", which causes the size of the...

Trying to understand this code: ` refresh() { const changesDetected = this.updateObservers_(); // Continue running updates if changes have been detected as there might // be future ones caused by...

Hi, I will try to open the same issue on the typescript repo asap, I'm trying here first because my typescript configuration has been used for quite some time and...

Trying to `contentRect` property with right type, but native `DOMRectReadOnly` has a `toJSON` method that your interface doesn't have, this results into a type mismatch.