@visactor/vtable 1.22.3 → 1.22.4-alpha.1
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/PivotTable.js +5 -5
- package/cjs/PivotTable.js.map +1 -1
- package/cjs/core/BaseTable.js +1 -1
- 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/layout/index.js +1 -2
- package/cjs/layout/pivot-header-layout.js +1 -1
- package/cjs/layout/pivot-layout.js +0 -2
- package/cjs/layout/row-height-map.js +1 -1
- package/cjs/layout/simple-header-layout.js +1 -1
- package/cjs/layout/tree-helper.js +1 -1
- package/cjs/plugins/custom-cell-style.js +2 -1
- package/cjs/plugins/index.js +1 -1
- package/cjs/plugins/interface.js +1 -1
- package/cjs/plugins/invert-highlight.js +1 -1
- package/cjs/plugins/list-tree-stick-cell.js +1 -1
- package/cjs/plugins/plugin-manager.js +1 -1
- package/cjs/state/state.js +2 -2
- package/cjs/state/state.js.map +1 -1
- package/cjs/vrender.js.map +1 -1
- package/dist/vtable.js +8 -10
- package/dist/vtable.min.js +1 -1
- package/es/PivotTable.js +5 -5
- package/es/PivotTable.js.map +1 -1
- package/es/core/BaseTable.js +1 -1
- 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/layout/index.js +1 -2
- package/es/layout/pivot-header-layout.js +1 -1
- package/es/layout/pivot-layout.js +0 -2
- package/es/layout/row-height-map.js +1 -1
- package/es/layout/simple-header-layout.js +1 -1
- package/es/layout/tree-helper.js +1 -1
- package/es/plugins/custom-cell-style.js +2 -1
- package/es/plugins/index.js +1 -1
- package/es/plugins/interface.js +1 -1
- package/es/plugins/invert-highlight.js +1 -1
- package/es/plugins/list-tree-stick-cell.js +1 -1
- package/es/plugins/plugin-manager.js +1 -1
- package/es/state/state.js +2 -2
- package/es/state/state.js.map +1 -1
- package/es/vrender.js.map +1 -1
- package/package.json +4 -4
package/dist/vtable.js
CHANGED
|
@@ -60684,11 +60684,10 @@
|
|
|
60684
60684
|
return endMoveCol(this);
|
|
60685
60685
|
}
|
|
60686
60686
|
checkFrozen() {
|
|
60687
|
-
let originalFrozenColCount = this.table.options.frozenColCount
|
|
60688
|
-
|
|
60689
|
-
|
|
60690
|
-
|
|
60691
|
-
: 0;
|
|
60687
|
+
let originalFrozenColCount = this.table.options.frozenColCount ??
|
|
60688
|
+
(this.table.isPivotTable() || (this.table.isListTable() && this.table.internalProps.transpose))
|
|
60689
|
+
? (this.table.rowHeaderLevelCount ?? 0) + this.table.internalProps.layoutMap.leftRowSeriesNumberColumnCount
|
|
60690
|
+
: 0;
|
|
60692
60691
|
if (originalFrozenColCount) {
|
|
60693
60692
|
originalFrozenColCount = Math.min(originalFrozenColCount, this.table.colCount);
|
|
60694
60693
|
const container = this.table.getContainer();
|
|
@@ -69404,7 +69403,7 @@
|
|
|
69404
69403
|
return TABLE_EVENT_TYPE;
|
|
69405
69404
|
}
|
|
69406
69405
|
options;
|
|
69407
|
-
version = "1.22.
|
|
69406
|
+
version = "1.22.4-alpha.1";
|
|
69408
69407
|
pagination;
|
|
69409
69408
|
id = `VTable${Date.now()}`;
|
|
69410
69409
|
headerStyleCache;
|
|
@@ -90887,9 +90886,8 @@
|
|
|
90887
90886
|
}
|
|
90888
90887
|
table.colCount = layoutMap.colCount ?? 0;
|
|
90889
90888
|
table.rowCount = layoutMap.rowCount ?? 0;
|
|
90890
|
-
this.internalProps.frozenColCount =
|
|
90891
|
-
|
|
90892
|
-
: (layoutMap.rowHeaderLevelCount ?? 0) + layoutMap.leftRowSeriesNumberColumnCount;
|
|
90889
|
+
this.internalProps.frozenColCount =
|
|
90890
|
+
this.options.frozenColCount ?? (layoutMap.rowHeaderLevelCount ?? 0) + layoutMap.leftRowSeriesNumberColumnCount;
|
|
90893
90891
|
table._setFrozenRowCount(Math.max(layoutMap.headerLevelCount, this.options.frozenRowCount ?? 0));
|
|
90894
90892
|
if (table.bottomFrozenRowCount !== (this.options.bottomFrozenRowCount ?? 0)) {
|
|
90895
90893
|
table.bottomFrozenRowCount = this.options.bottomFrozenRowCount ?? 0;
|
|
@@ -93985,7 +93983,7 @@
|
|
|
93985
93983
|
}
|
|
93986
93984
|
|
|
93987
93985
|
registerForVrender();
|
|
93988
|
-
const version = "1.22.
|
|
93986
|
+
const version = "1.22.4-alpha.1";
|
|
93989
93987
|
function getIcons() {
|
|
93990
93988
|
return get$2();
|
|
93991
93989
|
}
|