@limetech/lime-elements 37.65.7 → 37.65.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2041,13 +2041,13 @@ const Portal = class {
2041
2041
  this.showContainer();
2042
2042
  }
2043
2043
  if ('ResizeObserver' in window) {
2044
- const observer = new ResizeObserver(() => {
2044
+ this.observer = new ResizeObserver(() => {
2045
2045
  if (this.popperInstance) {
2046
2046
  this.styleContainer();
2047
2047
  this.popperInstance.update();
2048
2048
  }
2049
2049
  });
2050
- observer.observe(this.container);
2050
+ this.observer.observe(this.container);
2051
2051
  }
2052
2052
  }
2053
2053
  render() {