@visactor/vtable 0.22.3 → 0.22.4-alpha.0

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/dist/vtable.js CHANGED
@@ -55606,7 +55606,7 @@
55606
55606
  return TABLE_EVENT_TYPE;
55607
55607
  }
55608
55608
  options;
55609
- version = "0.22.3";
55609
+ version = "0.22.4-alpha.0";
55610
55610
  pagination;
55611
55611
  id = `VTable${Date.now()}`;
55612
55612
  headerStyleCache;
@@ -60124,8 +60124,12 @@
60124
60124
  const addCellPositions = diffDataIndices.add.map(index => {
60125
60125
  return { col: 0, row: this._table.frozenRowCount + index };
60126
60126
  });
60127
- const removeCellPositions = diffDataIndices.remove.map(index => {
60128
- return { col: 0, row: this._table.frozenRowCount + index };
60127
+ const removeCellPositions = [];
60128
+ diffDataIndices.remove.forEach(index => {
60129
+ if (this._table.frozenRowCount + index >= this._table.scenegraph.proxy.rowStart &&
60130
+ this._table.frozenRowCount + index <= this._table.scenegraph.proxy.rowEnd) {
60131
+ removeCellPositions.push({ col: 0, row: this._table.frozenRowCount + index });
60132
+ }
60129
60133
  });
60130
60134
  return {
60131
60135
  addCellPositions,
@@ -67716,7 +67720,7 @@
67716
67720
  }
67717
67721
 
67718
67722
  registerForVrender();
67719
- const version = "0.22.3";
67723
+ const version = "0.22.4-alpha.0";
67720
67724
  function getIcons() {
67721
67725
  return get$2();
67722
67726
  }