@visactor/vtable 1.4.2-alpha.4 → 1.4.2

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.
@@ -400,6 +400,4 @@ export declare abstract class BaseTable extends EventTarget implements BaseTable
400
400
  checkReactCustomLayout(): void;
401
401
  get bodyDomContainer(): HTMLElement;
402
402
  get headerDomContainer(): HTMLElement;
403
- showMoverLine(col: number, row: number): void;
404
- hideMoverLine(col: number, row: number): void;
405
403
  }
@@ -88,7 +88,7 @@ export class BaseTable extends EventTarget {
88
88
  }
89
89
  constructor(container, options = {}) {
90
90
  var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l;
91
- if (super(), this.showFrozenIcon = !0, this.version = "1.4.2-alpha.4", this.id = `VTable${Date.now()}`,
91
+ if (super(), this.showFrozenIcon = !0, this.version = "1.4.2", this.id = `VTable${Date.now()}`,
92
92
  this.isReleased = !1, this._chartEventMap = {}, this.throttleInvalidate = throttle2(this.render.bind(this), 200),
93
93
  !container && "node" !== options.mode) throw new Error("vtable's container is undefined");
94
94
  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;
@@ -1758,11 +1758,5 @@ export class BaseTable extends EventTarget {
1758
1758
  get headerDomContainer() {
1759
1759
  return this.internalProps.headerDomContainer;
1760
1760
  }
1761
- showMoverLine(col, row) {
1762
- this.scenegraph.component.showMoveCol(col, row, 0), this.scenegraph.renderSceneGraph();
1763
- }
1764
- hideMoverLine(col, row) {
1765
- this.scenegraph.component.hideMoveCol(), this.scenegraph.renderSceneGraph();
1766
- }
1767
1761
  }
1768
1762
  //# sourceMappingURL=BaseTable.js.map