@limetech/lime-elements 37.65.1 → 37.65.2

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.
@@ -24378,9 +24378,12 @@ const Table = class {
24378
24378
  return;
24379
24379
  }
24380
24380
  const observer = new ResizeObserver(() => {
24381
- this.tabulator = new Tabulator(table, this.getOptions());
24382
- this.setSelection();
24383
- observer.unobserve(table);
24381
+ requestAnimationFrame(() => {
24382
+ this.tabulator = new Tabulator(table, this.getOptions());
24383
+ this.setSelection();
24384
+ observer.unobserve(table);
24385
+ observer.disconnect();
24386
+ });
24384
24387
  });
24385
24388
  observer.observe(table);
24386
24389
  }