@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/cjs/core/BaseTable.js +2 -2
- package/cjs/core/BaseTable.js.map +1 -1
- package/cjs/index.d.ts +1 -1
- package/cjs/index.js +1 -1
- package/cjs/index.js.map +1 -1
- package/cjs/scenegraph/scenegraph.js +2 -1
- package/cjs/scenegraph/scenegraph.js.map +1 -1
- package/dist/vtable.js +6 -3
- package/dist/vtable.min.js +1 -1
- package/es/core/BaseTable.js +2 -2
- package/es/core/BaseTable.js.map +1 -1
- package/es/index.d.ts +1 -1
- package/es/index.js +1 -1
- package/es/index.js.map +1 -1
- package/es/scenegraph/scenegraph.js +2 -1
- package/es/scenegraph/scenegraph.js.map +1 -1
- package/package.json +1 -1
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.
|
|
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.
|
|
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.
|
|
63968
|
+
const version = "0.13.3";
|
|
63966
63969
|
function getIcons() {
|
|
63967
63970
|
return get$1();
|
|
63968
63971
|
}
|