@limetech/lime-elements 37.56.6 → 37.56.7

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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## [37.56.7](https://github.com/Lundalogik/lime-elements/compare/v37.56.6...v37.56.7) (2024-09-18)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+
7
+ * **table-view:** only release element pool if should replace is true ([4e508b9](https://github.com/Lundalogik/lime-elements/commit/4e508b9afec3e027d445c94e17eb023b22e1a01b))
8
+
1
9
  ## [37.56.6](https://github.com/Lundalogik/lime-elements/compare/v37.56.5...v37.56.6) (2024-08-21)
2
10
 
3
11
 
@@ -24260,13 +24260,13 @@ const Table = class {
24260
24260
  this.formatRows();
24261
24261
  }
24262
24262
  updateData(newData = [], oldData = []) {
24263
- this.pool.releaseAll();
24264
24263
  const shouldReplace = this.shouldReplaceData(newData, oldData);
24265
24264
  setTimeout(() => {
24266
24265
  if (!this.tabulator) {
24267
24266
  return;
24268
24267
  }
24269
24268
  if (shouldReplace) {
24269
+ this.pool.releaseAll();
24270
24270
  this.tabulator.replaceData(newData);
24271
24271
  this.setSelection();
24272
24272
  return;