@visactor/vtable 0.25.4-alpha.2 → 0.25.5

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.
Files changed (41) hide show
  1. package/cjs/core/BaseTable.js +8 -24
  2. package/cjs/core/BaseTable.js.map +1 -1
  3. package/cjs/event/listener/table-group.js +10 -3
  4. package/cjs/event/listener/table-group.js.map +1 -1
  5. package/cjs/index.d.ts +1 -1
  6. package/cjs/index.js +1 -1
  7. package/cjs/index.js.map +1 -1
  8. package/cjs/layout/pivot-header-layout.d.ts +0 -1
  9. package/cjs/layout/pivot-header-layout.js +3 -19
  10. package/cjs/layout/pivot-header-layout.js.map +1 -1
  11. package/cjs/scenegraph/graphic/group.d.ts +1 -1
  12. package/cjs/scenegraph/graphic/group.js.map +1 -1
  13. package/cjs/scenegraph/group-creater/cell-type/text-cell.js +1 -1
  14. package/cjs/scenegraph/group-creater/cell-type/text-cell.js.map +1 -1
  15. package/cjs/scenegraph/group-creater/column-helper.js +1 -1
  16. package/cjs/scenegraph/group-creater/column-helper.js.map +1 -1
  17. package/cjs/ts-types/base-table.d.ts +1 -1
  18. package/cjs/ts-types/base-table.js.map +1 -1
  19. package/cjs/vrender.js.map +1 -1
  20. package/dist/vtable.js +22 -72
  21. package/dist/vtable.min.js +2 -2
  22. package/es/core/BaseTable.js +8 -24
  23. package/es/core/BaseTable.js.map +1 -1
  24. package/es/event/listener/table-group.js +11 -2
  25. package/es/event/listener/table-group.js.map +1 -1
  26. package/es/index.d.ts +1 -1
  27. package/es/index.js +1 -1
  28. package/es/index.js.map +1 -1
  29. package/es/layout/pivot-header-layout.d.ts +0 -1
  30. package/es/layout/pivot-header-layout.js +3 -19
  31. package/es/layout/pivot-header-layout.js.map +1 -1
  32. package/es/scenegraph/graphic/group.d.ts +1 -1
  33. package/es/scenegraph/graphic/group.js.map +1 -1
  34. package/es/scenegraph/group-creater/cell-type/text-cell.js +1 -1
  35. package/es/scenegraph/group-creater/cell-type/text-cell.js.map +1 -1
  36. package/es/scenegraph/group-creater/column-helper.js +1 -1
  37. package/es/scenegraph/group-creater/column-helper.js.map +1 -1
  38. package/es/ts-types/base-table.d.ts +1 -1
  39. package/es/ts-types/base-table.js.map +1 -1
  40. package/es/vrender.js.map +1 -1
  41. package/package.json +5 -5
@@ -82,10 +82,10 @@ export class BaseTable extends EventTarget {
82
82
  }
83
83
  constructor(container, options = {}) {
84
84
  var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
85
- if (super(), this.showFrozenIcon = !0, this.version = "0.25.4-alpha.2", this.id = `VTable${Date.now()}`,
85
+ if (super(), this.showFrozenIcon = !0, this.version = "0.25.5", this.id = `VTable${Date.now()}`,
86
86
  this.isReleased = !1, this._chartEventMap = {}, this.throttleInvalidate = throttle2(this.render.bind(this), 200),
87
87
  !container && "node" !== options.mode) throw new Error("vtable's container is undefined");
88
- const {frozenColCount: frozenColCount = 0, defaultRowHeight: defaultRowHeight = 40, defaultHeaderRowHeight: defaultHeaderRowHeight, defaultColWidth: defaultColWidth = 80, defaultHeaderColWidth: defaultHeaderColWidth, widthMode: widthMode = "standard", heightMode: heightMode = "standard", autoFillWidth: autoFillWidth = !1, autoFillHeight: autoFillHeight = !1, widthAdaptiveMode: widthAdaptiveMode = "only-body", heightAdaptiveMode: heightAdaptiveMode = "only-body", keyboardOptions: keyboardOptions, eventOptions: eventOptions, rowSeriesNumber: rowSeriesNumber, columnResizeMode: columnResizeMode, rowResizeMode: rowResizeMode = "none", dragHeaderMode: dragHeaderMode, showFrozenIcon: showFrozenIcon, allowFrozenColCount: allowFrozenColCount, padding: padding, hover: hover, menu: menu, select: click, customRender: customRender, pixelRatio: pixelRatio = defaultPixelRatio, renderChartAsync: renderChartAsync, renderChartAsyncBatchCount: renderChartAsyncBatchCount, mode: mode, modeParams: modeParams, canvasWidth: canvasWidth, canvasHeight: canvasHeight, overscrollBehavior: overscrollBehavior, limitMinWidth: limitMinWidth, limitMinHeight: limitMinHeight} = options;
88
+ const {frozenColCount: frozenColCount = 0, defaultRowHeight: defaultRowHeight = 40, defaultHeaderRowHeight: defaultHeaderRowHeight, defaultColWidth: defaultColWidth = 80, defaultHeaderColWidth: defaultHeaderColWidth, widthMode: widthMode = "standard", heightMode: heightMode = "standard", autoFillWidth: autoFillWidth = !1, autoFillHeight: autoFillHeight = !1, widthAdaptiveMode: widthAdaptiveMode = "only-body", heightAdaptiveMode: heightAdaptiveMode = "only-body", keyboardOptions: keyboardOptions, eventOptions: eventOptions, rowSeriesNumber: rowSeriesNumber, columnResizeMode: columnResizeMode, rowResizeMode: rowResizeMode = "none", dragHeaderMode: dragHeaderMode, showFrozenIcon: showFrozenIcon, allowFrozenColCount: allowFrozenColCount, padding: padding, hover: hover, menu: menu, select: click, customRender: customRender, pixelRatio: pixelRatio = defaultPixelRatio, renderChartAsync: renderChartAsync, renderChartAsyncBatchCount: renderChartAsyncBatchCount, mode: mode, modeParams: modeParams, canvasWidth: canvasWidth, canvasHeight: canvasHeight, overscrollBehavior: overscrollBehavior, limitMinWidth: limitMinWidth, limitMinHeight: limitMinHeight, clearDOM: clearDOM = !0} = options;
89
89
  this.container = container, this.options = options, this._widthMode = widthMode,
90
90
  this._heightMode = heightMode, this._widthAdaptiveMode = widthAdaptiveMode, this._heightAdaptiveMode = heightAdaptiveMode,
91
91
  this._autoFillWidth = autoFillWidth, this._autoFillHeight = autoFillHeight, this.customRender = customRender,
@@ -124,8 +124,9 @@ export class BaseTable extends EventTarget {
124
124
  return "node" === Env.mode ? canvasWidth / (null != pixelRatio ? pixelRatio : 1) : this._.canvas.width / (null !== (_a = this._.context.pixelRatio) && void 0 !== _a ? _a : window.devicePixelRatio);
125
125
  }
126
126
  }, internalProps.cellTextOverflows = {}, internalProps.focusedTable = !1, internalProps.theme = themes.of(null !== (_b = options.theme) && void 0 !== _b ? _b : themes.DEFAULT),
127
- internalProps.theme.isPivot = this.isPivotTable(), container ? (container.appendChild(internalProps.element),
128
- this._updateSize()) : this._updateSize(), this.options = options, internalProps.theme = themes.of(null !== (_c = options.theme) && void 0 !== _c ? _c : themes.DEFAULT),
127
+ internalProps.theme.isPivot = this.isPivotTable(), container ? (clearDOM && (container.innerHTML = ""),
128
+ container.appendChild(internalProps.element), this._updateSize()) : this._updateSize(),
129
+ this.options = options, internalProps.theme = themes.of(null !== (_c = options.theme) && void 0 !== _c ? _c : themes.DEFAULT),
129
130
  internalProps.theme.isPivot = this.isPivotTable(), internalProps.bodyHelper = new BodyHelper(this),
130
131
  internalProps.headerHelper = new HeaderHelper(this), internalProps.rowSeriesNumberHelper = new RowSeriesNumberHelper(this),
131
132
  internalProps.autoWrapText = options.autoWrapText, internalProps.enableLineBreak = options.enableLineBreak,
@@ -395,15 +396,7 @@ export class BaseTable extends EventTarget {
395
396
  Math.round(w);
396
397
  }
397
398
  getRowHeight(row) {
398
- if (isValid(this.rowHeightsMap.get(row))) {
399
- if (this.options._disableColumnAndRowSizeRound) {
400
- const height = this.rowHeightsMap.get(row);
401
- let heightRange;
402
- return heightRange = row < this.frozenRowCount ? this.rowHeightsMap.getSumInRange(0, row) : row >= this.rowCount - this.bottomFrozenRowCount ? this.rowHeightsMap.getSumInRange(row, this.rowCount - 1) : this.rowHeightsMap.getSumInRange(this.frozenRowCount, row),
403
- heightRange = Number(heightRange.toFixed(2)), Number.isInteger(heightRange) ? Math.ceil(height) : Math.floor(height);
404
- }
405
- return this.rowHeightsMap.get(row);
406
- }
399
+ if (isValid(this.rowHeightsMap.get(row))) return this.rowHeightsMap.get(row);
407
400
  const defaultHeight = this.getDefaultRowHeight(row);
408
401
  return isNumber(defaultHeight) ? defaultHeight : this.defaultRowHeight;
409
402
  }
@@ -416,23 +409,14 @@ export class BaseTable extends EventTarget {
416
409
  return this.isColumnHeader(0, row) || this.isCornerHeader(0, row) || this.isSeriesNumberInHeader(0, row) ? Array.isArray(this.defaultHeaderRowHeight) ? null !== (_a = this.defaultHeaderRowHeight[row]) && void 0 !== _a ? _a : this.internalProps.defaultRowHeight : this.defaultHeaderRowHeight : this.isBottomFrozenRow(row) ? Array.isArray(this.defaultHeaderRowHeight) ? null !== (_b = this.defaultHeaderRowHeight[this.columnHeaderLevelCount > 0 ? this.columnHeaderLevelCount - this.bottomFrozenRowCount : 0]) && void 0 !== _b ? _b : this.internalProps.defaultRowHeight : this.defaultHeaderRowHeight : this.internalProps.defaultRowHeight;
417
410
  }
418
411
  _setRowHeight(row, height, clearCache) {
419
- this.rowHeightsMap.put(row, this.options._disableColumnAndRowSizeRound ? height : Math.round(height)),
420
- clearCache && this._clearRowRangeHeightsMap(row);
412
+ this.rowHeightsMap.put(row, Math.round(height)), clearCache && this._clearRowRangeHeightsMap(row);
421
413
  }
422
414
  getRowsHeight(startRow, endRow) {
423
415
  var _a;
424
416
  if (startRow > endRow || 0 === this.rowCount) return 0;
425
417
  startRow = Math.max(startRow, 0), endRow = Math.min(endRow, (null !== (_a = this.rowCount) && void 0 !== _a ? _a : 1 / 0) - 1);
426
418
  let h = 0;
427
- if ("standard" !== this.heightMode || this.autoFillHeight || !this.internalProps.layoutMap || this.hasAutoImageColumn() || 0 !== this.internalProps._heightResizedRowMap.size) {
428
- if (this.options._disableColumnAndRowSizeRound) {
429
- const tempH = this.rowHeightsMap.getSumInRange(startRow, endRow);
430
- let heightRange;
431
- return heightRange = endRow < this.frozenRowCount ? this.rowHeightsMap.getSumInRange(0, endRow) : endRow >= this.rowCount - this.bottomFrozenRowCount ? this.rowHeightsMap.getSumInRange(endRow, this.rowCount - 1) : this.rowHeightsMap.getSumInRange(this.frozenRowCount, endRow),
432
- heightRange = Number(heightRange.toFixed(2)), Number.isInteger(heightRange) ? Math.ceil(tempH) : Math.floor(tempH);
433
- }
434
- h = this.rowHeightsMap.getSumInRange(startRow, endRow);
435
- } else {
419
+ if ("standard" !== this.heightMode || this.autoFillHeight || !this.internalProps.layoutMap || this.hasAutoImageColumn() || 0 !== this.internalProps._heightResizedRowMap.size) h = this.rowHeightsMap.getSumInRange(startRow, endRow); else {
436
420
  for (let i = startRow; i < Math.min(endRow + 1, this.columnHeaderLevelCount); i++) h += this.getRowHeight(i);
437
421
  endRow >= this.columnHeaderLevelCount && (h += this.defaultRowHeight * (Math.min(endRow, this.rowCount - this.bottomFrozenRowCount - 1) - Math.max(this.columnHeaderLevelCount, startRow) + 1));
438
422
  for (let i = this.rowCount - this.bottomFrozenRowCount; i < endRow + 1; i++) h += this.getRowHeight(i);