@visactor/vtable 0.11.1-alpha.6 → 0.11.1-alpha.7

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 (43) 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 +2 -1
  4. package/cjs/index.js +12 -4
  5. package/cjs/index.js.map +1 -1
  6. package/cjs/scenegraph/group-creater/cell-helper.js +1 -1
  7. package/cjs/scenegraph/group-creater/cell-helper.js.map +1 -1
  8. package/cjs/scenegraph/group-creater/progress/update-position/dynamic-set-y.js +7 -9
  9. package/cjs/scenegraph/group-creater/progress/update-position/dynamic-set-y.js.map +1 -1
  10. package/cjs/scenegraph/group-creater/progress/update-position/util.js +26 -3
  11. package/cjs/scenegraph/group-creater/progress/update-position/util.js.map +1 -1
  12. package/cjs/scenegraph/scenegraph.d.ts +2 -0
  13. package/cjs/scenegraph/scenegraph.js +6 -0
  14. package/cjs/scenegraph/scenegraph.js.map +1 -1
  15. package/cjs/tools/get-data-path/create-dataset.d.ts +3 -0
  16. package/cjs/tools/get-data-path/create-dataset.js +136 -0
  17. package/cjs/tools/get-data-path/create-dataset.js.map +1 -0
  18. package/cjs/tools/get-data-path/index.d.ts +2 -0
  19. package/cjs/tools/get-data-path/index.js +32 -0
  20. package/cjs/tools/get-data-path/index.js.map +1 -0
  21. package/dist/vtable.js +299 -16
  22. package/dist/vtable.min.js +1 -1
  23. package/es/core/BaseTable.js +1 -1
  24. package/es/core/BaseTable.js.map +1 -1
  25. package/es/index.d.ts +2 -1
  26. package/es/index.js +3 -1
  27. package/es/index.js.map +1 -1
  28. package/es/scenegraph/group-creater/cell-helper.js +1 -1
  29. package/es/scenegraph/group-creater/cell-helper.js.map +1 -1
  30. package/es/scenegraph/group-creater/progress/update-position/dynamic-set-y.js +8 -9
  31. package/es/scenegraph/group-creater/progress/update-position/dynamic-set-y.js.map +1 -1
  32. package/es/scenegraph/group-creater/progress/update-position/util.js +26 -3
  33. package/es/scenegraph/group-creater/progress/update-position/util.js.map +1 -1
  34. package/es/scenegraph/scenegraph.d.ts +2 -0
  35. package/es/scenegraph/scenegraph.js +6 -0
  36. package/es/scenegraph/scenegraph.js.map +1 -1
  37. package/es/tools/get-data-path/create-dataset.d.ts +3 -0
  38. package/es/tools/get-data-path/create-dataset.js +130 -0
  39. package/es/tools/get-data-path/create-dataset.js.map +1 -0
  40. package/es/tools/get-data-path/index.d.ts +2 -0
  41. package/es/tools/get-data-path/index.js +28 -0
  42. package/es/tools/get-data-path/index.js.map +1 -0
  43. package/package.json +1 -1
@@ -45,7 +45,7 @@ class BaseTable extends EventTarget_1.EventTarget {
45
45
  }
46
46
  constructor(container, options = {}) {
47
47
  var _a, _b, _c, _d, _e, _f, _g;
48
- if (super(), this.showFrozenIcon = !0, this.showSort = !0, this.version = "0.11.1-alpha.6",
48
+ if (super(), this.showFrozenIcon = !0, this.showSort = !0, this.version = "0.11.1-alpha.7",
49
49
  this.id = `VTable${Date.now()}`, this.isReleased = !1, this.throttleInvalidate = (0,
50
50
  util_1.throttle2)(this.render.bind(this), 200), !container) throw new Error("vtable's container is undefined");
51
51
  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, keyboardOptions: keyboardOptions, columnResizeMode: columnResizeMode, 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} = options;