@visactor/vtable 0.10.1 → 0.10.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.
Files changed (163) hide show
  1. package/cjs/ListTable.d.ts +2 -1
  2. package/cjs/ListTable.js +8 -2
  3. package/cjs/ListTable.js.map +1 -1
  4. package/cjs/PivotChart.d.ts +1 -0
  5. package/cjs/PivotChart.js +3 -2
  6. package/cjs/PivotChart.js.map +1 -1
  7. package/cjs/PivotTable.d.ts +2 -1
  8. package/cjs/PivotTable.js +10 -4
  9. package/cjs/PivotTable.js.map +1 -1
  10. package/cjs/components/axis/axis.js +4 -5
  11. package/cjs/components/axis/axis.js.map +1 -1
  12. package/cjs/components/axis/get-axis-component-size.d.ts +2 -2
  13. package/cjs/components/axis/get-axis-component-size.js +12 -8
  14. package/cjs/components/axis/get-axis-component-size.js.map +1 -1
  15. package/cjs/components/axis/label-overlap.js +20 -2
  16. package/cjs/components/axis/label-overlap.js.map +1 -1
  17. package/cjs/components/legend/continue-legend/continue-legend.d.ts +24 -0
  18. package/cjs/components/legend/continue-legend/continue-legend.js +93 -0
  19. package/cjs/components/legend/continue-legend/continue-legend.js.map +1 -0
  20. package/cjs/components/legend/continue-legend/get-continue-legend-attributes.d.ts +5 -0
  21. package/cjs/components/legend/continue-legend/get-continue-legend-attributes.js +139 -0
  22. package/cjs/components/legend/continue-legend/get-continue-legend-attributes.js.map +1 -0
  23. package/cjs/components/legend/create-legend.d.ts +5 -0
  24. package/cjs/components/legend/create-legend.js +14 -0
  25. package/cjs/components/legend/create-legend.js.map +1 -0
  26. package/{es/components/legend/legend.d.ts → cjs/components/legend/discrete-legend/discrete-legend.d.ts} +6 -6
  27. package/cjs/components/legend/{legend.js → discrete-legend/discrete-legend.js} +6 -6
  28. package/cjs/components/legend/discrete-legend/discrete-legend.js.map +1 -0
  29. package/cjs/components/legend/discrete-legend/get-discrete-legend-attributes.d.ts +5 -0
  30. package/cjs/components/legend/{get-legend-attributes.js → discrete-legend/get-discrete-legend-attributes.js} +2 -2
  31. package/cjs/components/legend/discrete-legend/get-discrete-legend-attributes.js.map +1 -0
  32. package/cjs/components/util/tick-data/continuous.js +8 -3
  33. package/cjs/components/util/tick-data/continuous.js.map +1 -1
  34. package/cjs/components/util/tick-data/discrete/linear.js +28 -4
  35. package/cjs/components/util/tick-data/discrete/linear.js.map +1 -1
  36. package/cjs/components/util/tick-data/discrete/polar-angle.js +2 -2
  37. package/cjs/components/util/tick-data/discrete/polar-angle.js.map +1 -1
  38. package/cjs/components/util/tick-data/util.js +1 -2
  39. package/cjs/components/util/tick-data/util.js.map +1 -1
  40. package/cjs/core/BaseTable.d.ts +3 -3
  41. package/cjs/core/BaseTable.js +4 -10
  42. package/cjs/core/BaseTable.js.map +1 -1
  43. package/cjs/core/TABLE_EVENT_TYPE.d.ts +1 -0
  44. package/cjs/core/TABLE_EVENT_TYPE.js +1 -0
  45. package/cjs/core/TABLE_EVENT_TYPE.js.map +1 -1
  46. package/cjs/core/tableHelper.js +1 -1
  47. package/cjs/core/tableHelper.js.map +1 -1
  48. package/cjs/data/CachedDataSource.d.ts +3 -3
  49. package/cjs/data/CachedDataSource.js +4 -4
  50. package/cjs/data/CachedDataSource.js.map +1 -1
  51. package/cjs/data/DataSource.d.ts +4 -4
  52. package/cjs/data/DataSource.js +5 -5
  53. package/cjs/data/DataSource.js.map +1 -1
  54. package/cjs/dataset/dataset.d.ts +11 -8
  55. package/cjs/dataset/dataset.js +14 -3
  56. package/cjs/dataset/dataset.js.map +1 -1
  57. package/cjs/event/listener/table-group.js +42 -49
  58. package/cjs/event/listener/table-group.js.map +1 -1
  59. package/cjs/index.d.ts +2 -1
  60. package/cjs/index.js +3 -2
  61. package/cjs/index.js.map +1 -1
  62. package/cjs/scenegraph/graphic/contributions/chart-render-helper.js +10 -6
  63. package/cjs/scenegraph/graphic/contributions/chart-render-helper.js.map +1 -1
  64. package/cjs/scenegraph/graphic/contributions/chart-render.js +16 -5
  65. package/cjs/scenegraph/graphic/contributions/chart-render.js.map +1 -1
  66. package/cjs/scenegraph/scenegraph.js +31 -3
  67. package/cjs/scenegraph/scenegraph.js.map +1 -1
  68. package/cjs/ts-types/base-table.d.ts +6 -5
  69. package/cjs/ts-types/base-table.js.map +1 -1
  70. package/cjs/ts-types/component/legend.d.ts +15 -2
  71. package/cjs/ts-types/component/legend.js.map +1 -1
  72. package/cjs/ts-types/events.d.ts +6 -1
  73. package/cjs/ts-types/events.js.map +1 -1
  74. package/cjs/ts-types/style-define.d.ts +3 -2
  75. package/cjs/ts-types/style-define.js.map +1 -1
  76. package/cjs/ts-types/table-engine.d.ts +4 -3
  77. package/cjs/ts-types/table-engine.js.map +1 -1
  78. package/dist/vtable.js +66506 -64944
  79. package/dist/vtable.min.js +13 -13
  80. package/es/ListTable.d.ts +2 -1
  81. package/es/ListTable.js +8 -2
  82. package/es/ListTable.js.map +1 -1
  83. package/es/PivotChart.d.ts +1 -0
  84. package/es/PivotChart.js +3 -2
  85. package/es/PivotChart.js.map +1 -1
  86. package/es/PivotTable.d.ts +2 -1
  87. package/es/PivotTable.js +10 -4
  88. package/es/PivotTable.js.map +1 -1
  89. package/es/components/axis/axis.js +4 -5
  90. package/es/components/axis/axis.js.map +1 -1
  91. package/es/components/axis/get-axis-component-size.d.ts +2 -2
  92. package/es/components/axis/get-axis-component-size.js +12 -8
  93. package/es/components/axis/get-axis-component-size.js.map +1 -1
  94. package/es/components/axis/label-overlap.js +20 -2
  95. package/es/components/axis/label-overlap.js.map +1 -1
  96. package/es/components/legend/continue-legend/continue-legend.d.ts +24 -0
  97. package/es/components/legend/continue-legend/continue-legend.js +91 -0
  98. package/es/components/legend/continue-legend/continue-legend.js.map +1 -0
  99. package/es/components/legend/continue-legend/get-continue-legend-attributes.d.ts +5 -0
  100. package/es/components/legend/continue-legend/get-continue-legend-attributes.js +132 -0
  101. package/es/components/legend/continue-legend/get-continue-legend-attributes.js.map +1 -0
  102. package/es/components/legend/create-legend.d.ts +5 -0
  103. package/es/components/legend/create-legend.js +8 -0
  104. package/es/components/legend/create-legend.js.map +1 -0
  105. package/{cjs/components/legend/legend.d.ts → es/components/legend/discrete-legend/discrete-legend.d.ts} +6 -6
  106. package/es/components/legend/{legend.js → discrete-legend/discrete-legend.js} +5 -5
  107. package/es/components/legend/discrete-legend/discrete-legend.js.map +1 -0
  108. package/es/components/legend/discrete-legend/get-discrete-legend-attributes.d.ts +5 -0
  109. package/es/components/legend/{get-legend-attributes.js → discrete-legend/get-discrete-legend-attributes.js} +3 -3
  110. package/es/components/legend/discrete-legend/get-discrete-legend-attributes.js.map +1 -0
  111. package/es/components/util/tick-data/continuous.js +8 -3
  112. package/es/components/util/tick-data/continuous.js.map +1 -1
  113. package/es/components/util/tick-data/discrete/linear.js +26 -4
  114. package/es/components/util/tick-data/discrete/linear.js.map +1 -1
  115. package/es/components/util/tick-data/discrete/polar-angle.js +2 -2
  116. package/es/components/util/tick-data/discrete/polar-angle.js.map +1 -1
  117. package/es/components/util/tick-data/util.js +1 -2
  118. package/es/components/util/tick-data/util.js.map +1 -1
  119. package/es/core/BaseTable.d.ts +3 -3
  120. package/es/core/BaseTable.js +4 -10
  121. package/es/core/BaseTable.js.map +1 -1
  122. package/es/core/TABLE_EVENT_TYPE.d.ts +1 -0
  123. package/es/core/TABLE_EVENT_TYPE.js +1 -0
  124. package/es/core/TABLE_EVENT_TYPE.js.map +1 -1
  125. package/es/core/tableHelper.js +1 -1
  126. package/es/core/tableHelper.js.map +1 -1
  127. package/es/data/CachedDataSource.d.ts +3 -3
  128. package/es/data/CachedDataSource.js +4 -4
  129. package/es/data/CachedDataSource.js.map +1 -1
  130. package/es/data/DataSource.d.ts +4 -4
  131. package/es/data/DataSource.js +5 -5
  132. package/es/data/DataSource.js.map +1 -1
  133. package/es/dataset/dataset.d.ts +11 -8
  134. package/es/dataset/dataset.js +13 -3
  135. package/es/dataset/dataset.js.map +1 -1
  136. package/es/event/listener/table-group.js +41 -48
  137. package/es/event/listener/table-group.js.map +1 -1
  138. package/es/index.d.ts +2 -1
  139. package/es/index.js +3 -1
  140. package/es/index.js.map +1 -1
  141. package/es/scenegraph/graphic/contributions/chart-render-helper.js +10 -6
  142. package/es/scenegraph/graphic/contributions/chart-render-helper.js.map +1 -1
  143. package/es/scenegraph/graphic/contributions/chart-render.js +16 -5
  144. package/es/scenegraph/graphic/contributions/chart-render.js.map +1 -1
  145. package/es/scenegraph/scenegraph.js +32 -2
  146. package/es/scenegraph/scenegraph.js.map +1 -1
  147. package/es/ts-types/base-table.d.ts +6 -5
  148. package/es/ts-types/base-table.js.map +1 -1
  149. package/es/ts-types/component/legend.d.ts +15 -2
  150. package/es/ts-types/component/legend.js.map +1 -1
  151. package/es/ts-types/events.d.ts +6 -1
  152. package/es/ts-types/events.js.map +1 -1
  153. package/es/ts-types/style-define.d.ts +3 -2
  154. package/es/ts-types/style-define.js.map +1 -1
  155. package/es/ts-types/table-engine.d.ts +4 -3
  156. package/es/ts-types/table-engine.js.map +1 -1
  157. package/package.json +14 -12
  158. package/cjs/components/legend/get-legend-attributes.d.ts +0 -5
  159. package/cjs/components/legend/get-legend-attributes.js.map +0 -1
  160. package/cjs/components/legend/legend.js.map +0 -1
  161. package/es/components/legend/get-legend-attributes.d.ts +0 -5
  162. package/es/components/legend/get-legend-attributes.js.map +0 -1
  163. package/es/components/legend/legend.js.map +0 -1

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.