@visactor/vtable 0.13.2 → 0.13.3

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
@@ -48260,6 +48260,9 @@
48260
48260
  this.recalculateColWidths();
48261
48261
  this.recalculateRowHeights();
48262
48262
  this.table.stateManeger.checkFrozen();
48263
+ if (!this.isPivot && !this.transpose) {
48264
+ this.component.setFrozenColumnShadow(this.table.frozenColCount - 1);
48265
+ }
48263
48266
  this.updateNextFrame();
48264
48267
  }
48265
48268
  findAndUpdateIcon(group, funcTypeArr, iconConfig) {
@@ -54077,7 +54080,7 @@
54077
54080
  return TABLE_EVENT_TYPE;
54078
54081
  }
54079
54082
  options;
54080
- version = "0.13.2";
54083
+ version = "0.13.3";
54081
54084
  pagination;
54082
54085
  id = `VTable${Date.now()}`;
54083
54086
  headerStyleCache;
@@ -54816,7 +54819,7 @@
54816
54819
  }
54817
54820
  isFrozenCell(col, row) {
54818
54821
  const isFrozenRow = this.isFrozenRow(row) || this.isBottomFrozenRow(row);
54819
- const isFrozenCol = this.isFrozenRow(col) || this.isRightFrozenColumn(col);
54822
+ const isFrozenCol = this.isFrozenColumn(col) || this.isRightFrozenColumn(col);
54820
54823
  if (isFrozenRow || isFrozenCol) {
54821
54824
  return {
54822
54825
  row: isFrozenRow,
@@ -63962,7 +63965,7 @@
63962
63965
  return new Tag(params ? params.attribute : {});
63963
63966
  }
63964
63967
 
63965
- const version = "0.13.2";
63968
+ const version = "0.13.3";
63966
63969
  function getIcons() {
63967
63970
  return get$1();
63968
63971
  }