@visactor/vtable 1.9.2-alpha.1 → 1.9.2-alpha.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.
Files changed (47) hide show
  1. package/cjs/core/BaseTable.js +1 -1
  2. package/cjs/core/BaseTable.js.map +1 -1
  3. package/cjs/index.d.ts +3 -1
  4. package/cjs/index.js +20 -2
  5. package/cjs/index.js.map +1 -1
  6. package/cjs/plugins/carousel-animation.d.ts +29 -0
  7. package/cjs/plugins/carousel-animation.js +60 -0
  8. package/cjs/plugins/carousel-animation.js.map +1 -0
  9. package/cjs/plugins/chartModules.js +1 -1
  10. package/cjs/plugins/invert-highlight.d.ts +19 -0
  11. package/cjs/plugins/invert-highlight.js +72 -0
  12. package/cjs/plugins/invert-highlight.js.map +1 -0
  13. package/cjs/scenegraph/graphic/group.js +2 -1
  14. package/cjs/scenegraph/graphic/group.js.map +1 -1
  15. package/cjs/scenegraph/group-creater/cell-helper.js +3 -2
  16. package/cjs/scenegraph/group-creater/cell-helper.js.map +1 -1
  17. package/cjs/tools/cell-range.d.ts +2 -0
  18. package/cjs/tools/cell-range.js +10 -0
  19. package/cjs/tools/cell-range.js.map +1 -0
  20. package/cjs/ts-types/base-table.d.ts +4 -2
  21. package/cjs/ts-types/base-table.js.map +1 -1
  22. package/cjs/vrender.js.map +1 -1
  23. package/dist/vtable.js +264 -98
  24. package/dist/vtable.min.js +2 -2
  25. package/es/core/BaseTable.js +1 -1
  26. package/es/core/BaseTable.js.map +1 -1
  27. package/es/index.d.ts +3 -1
  28. package/es/index.js +5 -1
  29. package/es/index.js.map +1 -1
  30. package/es/plugins/carousel-animation.d.ts +29 -0
  31. package/es/plugins/carousel-animation.js +52 -0
  32. package/es/plugins/carousel-animation.js.map +1 -0
  33. package/es/plugins/chartModules.js +1 -1
  34. package/es/plugins/invert-highlight.d.ts +19 -0
  35. package/es/plugins/invert-highlight.js +69 -0
  36. package/es/plugins/invert-highlight.js.map +1 -0
  37. package/es/scenegraph/graphic/group.js +2 -1
  38. package/es/scenegraph/graphic/group.js.map +1 -1
  39. package/es/scenegraph/group-creater/cell-helper.js +4 -1
  40. package/es/scenegraph/group-creater/cell-helper.js.map +1 -1
  41. package/es/tools/cell-range.d.ts +2 -0
  42. package/es/tools/cell-range.js +4 -0
  43. package/es/tools/cell-range.js.map +1 -0
  44. package/es/ts-types/base-table.d.ts +4 -2
  45. package/es/ts-types/base-table.js.map +1 -1
  46. package/es/vrender.js.map +1 -1
  47. package/package.json +6 -6
@@ -43,7 +43,7 @@ class BaseTable extends EventTarget_1.EventTarget {
43
43
  }
44
44
  constructor(container, options = {}) {
45
45
  var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
46
- if (super(), this.showFrozenIcon = !0, this.version = "1.9.2-alpha.1", this.id = `VTable${Date.now()}`,
46
+ if (super(), this.showFrozenIcon = !0, this.version = "1.9.2-alpha.3", this.id = `VTable${Date.now()}`,
47
47
  this.isReleased = !1, this._chartEventMap = {}, this.throttleInvalidate = (0, util_1.throttle2)(this.render.bind(this), 200),
48
48
  !container && "node" !== options.mode && !options.canvas) throw new Error("vtable's container is undefined");
49
49
  const {frozenColCount: frozenColCount = 0, frozenRowCount: frozenRowCount, 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 = pixel_ratio_1.defaultPixelRatio, renderChartAsync: renderChartAsync, renderChartAsyncBatchCount: renderChartAsyncBatchCount, mode: mode, modeParams: modeParams, canvasWidth: canvasWidth, canvasHeight: canvasHeight, overscrollBehavior: overscrollBehavior, limitMinWidth: limitMinWidth, limitMinHeight: limitMinHeight, clearDOM: clearDOM = !0} = options;