@visactor/vseed 0.3.15 → 0.4.0

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 (398) hide show
  1. package/dist/cjs/index.cjs +1 -1
  2. package/dist/cjs/index.cjs.map +1 -1
  3. package/dist/esm/builder/builder/builder.d.ts +1212 -302
  4. package/dist/esm/builder/register/all.js +4 -1
  5. package/dist/esm/builder/register/all.js.map +1 -1
  6. package/dist/esm/builder/register/chartType/circlePacking.d.ts +5 -0
  7. package/dist/esm/builder/register/chartType/circlePacking.js +9 -0
  8. package/dist/esm/builder/register/chartType/circlePacking.js.map +1 -0
  9. package/dist/esm/builder/register/chartType/index.d.ts +3 -0
  10. package/dist/esm/builder/register/chartType/index.js +4 -1
  11. package/dist/esm/builder/register/chartType/sunburst.d.ts +5 -0
  12. package/dist/esm/builder/register/chartType/sunburst.js +9 -0
  13. package/dist/esm/builder/register/chartType/sunburst.js.map +1 -0
  14. package/dist/esm/builder/register/chartType/treeMap.d.ts +5 -0
  15. package/dist/esm/builder/register/chartType/treeMap.js +9 -0
  16. package/dist/esm/builder/register/chartType/treeMap.js.map +1 -0
  17. package/dist/esm/dataReshape/constant.d.ts +2 -0
  18. package/dist/esm/dataReshape/constant.js +3 -1
  19. package/dist/esm/dataReshape/constant.js.map +1 -1
  20. package/dist/esm/dataReshape/unfoldDimensions.js +8 -2
  21. package/dist/esm/dataReshape/unfoldDimensions.js.map +1 -1
  22. package/dist/esm/pipeline/advanced/chart/pipeline/circlePacking.d.ts +2 -0
  23. package/dist/esm/pipeline/advanced/chart/pipeline/circlePacking.js +33 -0
  24. package/dist/esm/pipeline/advanced/chart/pipeline/circlePacking.js.map +1 -0
  25. package/dist/esm/pipeline/advanced/chart/pipeline/index.d.ts +6 -3
  26. package/dist/esm/pipeline/advanced/chart/pipeline/index.js +7 -4
  27. package/dist/esm/pipeline/advanced/chart/pipeline/raceBar.js +33 -2
  28. package/dist/esm/pipeline/advanced/chart/pipeline/raceBar.js.map +1 -1
  29. package/dist/esm/pipeline/advanced/chart/pipeline/raceColumn.js +34 -2
  30. package/dist/esm/pipeline/advanced/chart/pipeline/raceColumn.js.map +1 -1
  31. package/dist/esm/pipeline/advanced/chart/pipeline/raceScatter.js +28 -2
  32. package/dist/esm/pipeline/advanced/chart/pipeline/raceScatter.js.map +1 -1
  33. package/dist/esm/pipeline/advanced/chart/pipeline/scatter.js +1 -3
  34. package/dist/esm/pipeline/advanced/chart/pipeline/scatter.js.map +1 -1
  35. package/dist/esm/pipeline/advanced/chart/pipeline/sunburst.d.ts +2 -0
  36. package/dist/esm/pipeline/advanced/chart/pipeline/sunburst.js +33 -0
  37. package/dist/esm/pipeline/advanced/chart/pipeline/sunburst.js.map +1 -0
  38. package/dist/esm/pipeline/advanced/chart/pipeline/treeMap.d.ts +2 -0
  39. package/dist/esm/pipeline/advanced/chart/pipeline/treeMap.js +33 -0
  40. package/dist/esm/pipeline/advanced/chart/pipeline/treeMap.js.map +1 -0
  41. package/dist/esm/pipeline/advanced/chart/pipes/config/circlePacking.d.ts +2 -0
  42. package/dist/esm/pipeline/advanced/chart/pipes/config/circlePacking.js +27 -0
  43. package/dist/esm/pipeline/advanced/chart/pipes/config/circlePacking.js.map +1 -0
  44. package/dist/esm/pipeline/advanced/chart/pipes/config/index.d.ts +3 -0
  45. package/dist/esm/pipeline/advanced/chart/pipes/config/index.js +4 -1
  46. package/dist/esm/pipeline/advanced/chart/pipes/config/index.js.map +1 -1
  47. package/dist/esm/pipeline/advanced/chart/pipes/config/sunburst.d.ts +2 -0
  48. package/dist/esm/pipeline/advanced/chart/pipes/config/sunburst.js +27 -0
  49. package/dist/esm/pipeline/advanced/chart/pipes/config/sunburst.js.map +1 -0
  50. package/dist/esm/pipeline/advanced/chart/pipes/config/treeMap.d.ts +2 -0
  51. package/dist/esm/pipeline/advanced/chart/pipes/config/treeMap.js +27 -0
  52. package/dist/esm/pipeline/advanced/chart/pipes/config/treeMap.js.map +1 -0
  53. package/dist/esm/pipeline/advanced/chart/pipes/encoding/hierarchy.d.ts +3 -0
  54. package/dist/esm/pipeline/advanced/chart/pipes/encoding/hierarchy.js +75 -0
  55. package/dist/esm/pipeline/advanced/chart/pipes/encoding/hierarchy.js.map +1 -0
  56. package/dist/esm/pipeline/advanced/chart/pipes/encoding/index.d.ts +4 -0
  57. package/dist/esm/pipeline/advanced/chart/pipes/encoding/index.js +5 -1
  58. package/dist/esm/pipeline/advanced/chart/pipes/encoding/raceBar.d.ts +3 -0
  59. package/dist/esm/pipeline/advanced/chart/pipes/encoding/raceBar.js +81 -0
  60. package/dist/esm/pipeline/advanced/chart/pipes/encoding/raceBar.js.map +1 -0
  61. package/dist/esm/pipeline/advanced/chart/pipes/encoding/raceColumn.d.ts +3 -0
  62. package/dist/esm/pipeline/advanced/chart/pipes/encoding/raceColumn.js +81 -0
  63. package/dist/esm/pipeline/advanced/chart/pipes/encoding/raceColumn.js.map +1 -0
  64. package/dist/esm/pipeline/advanced/chart/pipes/encoding/raceScatter.d.ts +3 -0
  65. package/dist/esm/pipeline/advanced/chart/pipes/encoding/raceScatter.js +83 -0
  66. package/dist/esm/pipeline/advanced/chart/pipes/encoding/raceScatter.js.map +1 -0
  67. package/dist/esm/pipeline/advanced/chart/pipes/encoding/rose.js.map +1 -1
  68. package/dist/esm/pipeline/advanced/chart/pipes/reshape/index.d.ts +2 -0
  69. package/dist/esm/pipeline/advanced/chart/pipes/reshape/index.js +3 -1
  70. package/dist/esm/pipeline/spec/chart/pipeline/circlePacking.d.ts +1 -0
  71. package/dist/esm/pipeline/spec/chart/pipeline/circlePacking.js +34 -0
  72. package/dist/esm/pipeline/spec/chart/pipeline/circlePacking.js.map +1 -0
  73. package/dist/esm/pipeline/spec/chart/pipeline/index.d.ts +3 -0
  74. package/dist/esm/pipeline/spec/chart/pipeline/index.js +4 -1
  75. package/dist/esm/pipeline/spec/chart/pipeline/raceBar.js +3 -3
  76. package/dist/esm/pipeline/spec/chart/pipeline/raceBar.js.map +1 -1
  77. package/dist/esm/pipeline/spec/chart/pipeline/raceColumn.js +3 -3
  78. package/dist/esm/pipeline/spec/chart/pipeline/raceColumn.js.map +1 -1
  79. package/dist/esm/pipeline/spec/chart/pipeline/raceScatter.js +14 -7
  80. package/dist/esm/pipeline/spec/chart/pipeline/raceScatter.js.map +1 -1
  81. package/dist/esm/pipeline/spec/chart/pipeline/sunburst.d.ts +1 -0
  82. package/dist/esm/pipeline/spec/chart/pipeline/sunburst.js +34 -0
  83. package/dist/esm/pipeline/spec/chart/pipeline/sunburst.js.map +1 -0
  84. package/dist/esm/pipeline/spec/chart/pipeline/treeMap.d.ts +1 -0
  85. package/dist/esm/pipeline/spec/chart/pipeline/treeMap.js +37 -0
  86. package/dist/esm/pipeline/spec/chart/pipeline/treeMap.js.map +1 -0
  87. package/dist/esm/pipeline/spec/chart/pipes/axes/bandAxisStyle.js +6 -1
  88. package/dist/esm/pipeline/spec/chart/pipes/axes/bandAxisStyle.js.map +1 -1
  89. package/dist/esm/pipeline/spec/chart/pipes/axes/linearAxisStyle.js +6 -1
  90. package/dist/esm/pipeline/spec/chart/pipes/axes/linearAxisStyle.js.map +1 -1
  91. package/dist/esm/pipeline/spec/chart/pipes/axes/xLinear.js +5 -2
  92. package/dist/esm/pipeline/spec/chart/pipes/axes/xLinear.js.map +1 -1
  93. package/dist/esm/pipeline/spec/chart/pipes/axes/yLinear.js +5 -2
  94. package/dist/esm/pipeline/spec/chart/pipes/axes/yLinear.js.map +1 -1
  95. package/dist/esm/pipeline/spec/chart/pipes/dataset/datasetHierarchy.d.ts +2 -0
  96. package/dist/esm/pipeline/spec/chart/pipes/dataset/datasetHierarchy.js +114 -0
  97. package/dist/esm/pipeline/spec/chart/pipes/dataset/datasetHierarchy.js.map +1 -0
  98. package/dist/esm/pipeline/spec/chart/pipes/dataset/index.d.ts +1 -0
  99. package/dist/esm/pipeline/spec/chart/pipes/dataset/index.js +2 -1
  100. package/dist/esm/pipeline/spec/chart/pipes/init/circlePacking.d.ts +2 -0
  101. package/dist/esm/pipeline/spec/chart/pipes/init/circlePacking.js +36 -0
  102. package/dist/esm/pipeline/spec/chart/pipes/init/circlePacking.js.map +1 -0
  103. package/dist/esm/pipeline/spec/chart/pipes/init/index.d.ts +3 -0
  104. package/dist/esm/pipeline/spec/chart/pipes/init/index.js +4 -1
  105. package/dist/esm/pipeline/spec/chart/pipes/{player/playerYBand.d.ts → init/sunburst.d.ts} +1 -1
  106. package/dist/esm/pipeline/spec/chart/pipes/init/sunburst.js +44 -0
  107. package/dist/esm/pipeline/spec/chart/pipes/init/sunburst.js.map +1 -0
  108. package/dist/esm/pipeline/spec/chart/pipes/{player/playerXBand.d.ts → init/treeMap.d.ts} +1 -1
  109. package/dist/esm/pipeline/spec/chart/pipes/init/treeMap.js +26 -0
  110. package/dist/esm/pipeline/spec/chart/pipes/init/treeMap.js.map +1 -0
  111. package/dist/esm/pipeline/spec/chart/pipes/label/index.d.ts +4 -0
  112. package/dist/esm/pipeline/spec/chart/pipes/label/index.js +5 -1
  113. package/dist/esm/pipeline/spec/chart/pipes/label/label.js.map +1 -1
  114. package/dist/esm/pipeline/spec/chart/pipes/label/labelCirclePacking.d.ts +2 -0
  115. package/dist/esm/pipeline/spec/chart/pipes/label/labelCirclePacking.js +23 -0
  116. package/dist/esm/pipeline/spec/chart/pipes/label/labelCirclePacking.js.map +1 -0
  117. package/dist/esm/pipeline/spec/chart/pipes/{player/playerYLinear.d.ts → label/labelSunburst.d.ts} +1 -1
  118. package/dist/esm/pipeline/spec/chart/pipes/label/labelSunburst.js +26 -0
  119. package/dist/esm/pipeline/spec/chart/pipes/label/labelSunburst.js.map +1 -0
  120. package/dist/esm/pipeline/spec/chart/pipes/label/labelTreeMapGroup.d.ts +2 -0
  121. package/dist/esm/pipeline/spec/chart/pipes/label/labelTreeMapGroup.js +31 -0
  122. package/dist/esm/pipeline/spec/chart/pipes/label/labelTreeMapGroup.js.map +1 -0
  123. package/dist/esm/pipeline/spec/chart/pipes/label/labelTreeMapLeaf.d.ts +2 -0
  124. package/dist/esm/pipeline/spec/chart/pipes/label/labelTreeMapLeaf.js +68 -0
  125. package/dist/esm/pipeline/spec/chart/pipes/label/labelTreeMapLeaf.js.map +1 -0
  126. package/dist/esm/pipeline/spec/chart/pipes/player/index.d.ts +0 -4
  127. package/dist/esm/pipeline/spec/chart/pipes/player/index.js +0 -4
  128. package/dist/esm/pipeline/spec/chart/pipes/player/playerXY.js +45 -16
  129. package/dist/esm/pipeline/spec/chart/pipes/player/playerXY.js.map +1 -1
  130. package/dist/esm/pipeline/spec/chart/pipes/player/playerYX.js +47 -21
  131. package/dist/esm/pipeline/spec/chart/pipes/player/playerYX.js.map +1 -1
  132. package/dist/esm/pipeline/spec/chart/pipes/player/playerYY.js +13 -9
  133. package/dist/esm/pipeline/spec/chart/pipes/player/playerYY.js.map +1 -1
  134. package/dist/esm/pipeline/spec/chart/pipes/tooltip/index.d.ts +1 -0
  135. package/dist/esm/pipeline/spec/chart/pipes/tooltip/index.js +2 -1
  136. package/dist/esm/pipeline/spec/chart/pipes/tooltip/tooltipHierarchy.d.ts +2 -0
  137. package/dist/esm/pipeline/spec/chart/pipes/tooltip/tooltipHierarchy.js +84 -0
  138. package/dist/esm/pipeline/spec/chart/pipes/tooltip/tooltipHierarchy.js.map +1 -0
  139. package/dist/esm/pipeline/spec/chart/pipes/{player/playerXLinear.d.ts → tooltip/tooltipTreeMap.d.ts} +1 -1
  140. package/dist/esm/pipeline/spec/chart/pipes/tooltip/tooltipTreeMap.js +93 -0
  141. package/dist/esm/pipeline/spec/chart/pipes/tooltip/tooltipTreeMap.js.map +1 -0
  142. package/dist/esm/theme/common/player.js +2 -0
  143. package/dist/esm/theme/common/player.js.map +1 -1
  144. package/dist/esm/theme/dark/area.d.ts +156 -0
  145. package/dist/esm/theme/dark/area.js +29 -0
  146. package/dist/esm/theme/dark/area.js.map +1 -0
  147. package/dist/esm/theme/dark/bar.d.ts +238 -0
  148. package/dist/esm/theme/dark/bar.js +49 -0
  149. package/dist/esm/theme/dark/bar.js.map +1 -0
  150. package/dist/esm/theme/dark/boxPlot.d.ts +80 -0
  151. package/dist/esm/theme/dark/boxPlot.js +31 -0
  152. package/dist/esm/theme/dark/boxPlot.js.map +1 -0
  153. package/dist/esm/theme/dark/column.d.ts +411 -0
  154. package/dist/esm/theme/dark/column.js +64 -0
  155. package/dist/esm/theme/dark/column.js.map +1 -0
  156. package/dist/esm/theme/dark/dark.js +42 -328
  157. package/dist/esm/theme/dark/dark.js.map +1 -1
  158. package/dist/esm/theme/dark/dualAxis.d.ts +122 -0
  159. package/dist/esm/theme/dark/dualAxis.js +34 -0
  160. package/dist/esm/theme/dark/dualAxis.js.map +1 -0
  161. package/dist/esm/theme/dark/funnel.d.ts +64 -0
  162. package/dist/esm/theme/dark/funnel.js +22 -0
  163. package/dist/esm/theme/dark/funnel.js.map +1 -0
  164. package/dist/esm/theme/dark/heatmap.d.ts +66 -0
  165. package/dist/esm/theme/dark/heatmap.js +30 -0
  166. package/dist/esm/theme/dark/heatmap.js.map +1 -0
  167. package/dist/esm/theme/dark/hierarchy.d.ts +189 -0
  168. package/dist/esm/theme/dark/hierarchy.js +21 -0
  169. package/dist/esm/theme/dark/hierarchy.js.map +1 -0
  170. package/dist/esm/theme/dark/histogram.d.ts +252 -0
  171. package/dist/esm/theme/dark/histogram.js +29 -0
  172. package/dist/esm/theme/dark/histogram.js.map +1 -0
  173. package/dist/esm/theme/dark/line.d.ts +78 -0
  174. package/dist/esm/theme/dark/line.js +28 -0
  175. package/dist/esm/theme/dark/line.js.map +1 -0
  176. package/dist/esm/theme/dark/pie.d.ts +130 -0
  177. package/dist/esm/theme/dark/pie.js +26 -0
  178. package/dist/esm/theme/dark/pie.js.map +1 -0
  179. package/dist/esm/theme/dark/race.d.ts +717 -0
  180. package/dist/esm/theme/dark/race.js +138 -0
  181. package/dist/esm/theme/dark/race.js.map +1 -0
  182. package/dist/esm/theme/dark/radar.d.ts +63 -0
  183. package/dist/esm/theme/dark/radar.js +19 -0
  184. package/dist/esm/theme/dark/radar.js.map +1 -0
  185. package/dist/esm/theme/dark/rose.d.ts +128 -0
  186. package/dist/esm/theme/dark/rose.js +25 -0
  187. package/dist/esm/theme/dark/rose.js.map +1 -0
  188. package/dist/esm/theme/dark/scatter.d.ts +345 -0
  189. package/dist/esm/theme/dark/scatter.js +50 -0
  190. package/dist/esm/theme/dark/scatter.js.map +1 -0
  191. package/dist/esm/theme/light/area.d.ts +156 -0
  192. package/dist/esm/theme/light/area.js +29 -0
  193. package/dist/esm/theme/light/area.js.map +1 -0
  194. package/dist/esm/theme/light/bar.d.ts +238 -0
  195. package/dist/esm/theme/light/bar.js +49 -0
  196. package/dist/esm/theme/light/bar.js.map +1 -0
  197. package/dist/esm/theme/light/boxPlot.d.ts +80 -0
  198. package/dist/esm/theme/light/boxPlot.js +30 -0
  199. package/dist/esm/theme/light/boxPlot.js.map +1 -0
  200. package/dist/esm/theme/light/column.d.ts +411 -0
  201. package/dist/esm/theme/light/column.js +64 -0
  202. package/dist/esm/theme/light/column.js.map +1 -0
  203. package/dist/esm/theme/light/dualAxis.d.ts +122 -0
  204. package/dist/esm/theme/light/dualAxis.js +34 -0
  205. package/dist/esm/theme/light/dualAxis.js.map +1 -0
  206. package/dist/esm/theme/light/funnel.d.ts +64 -0
  207. package/dist/esm/theme/light/funnel.js +22 -0
  208. package/dist/esm/theme/light/funnel.js.map +1 -0
  209. package/dist/esm/theme/light/heatmap.d.ts +66 -0
  210. package/dist/esm/theme/light/heatmap.js +30 -0
  211. package/dist/esm/theme/light/heatmap.js.map +1 -0
  212. package/dist/esm/theme/light/hierarchy.d.ts +189 -0
  213. package/dist/esm/theme/light/hierarchy.js +21 -0
  214. package/dist/esm/theme/light/hierarchy.js.map +1 -0
  215. package/dist/esm/theme/light/histogram.d.ts +252 -0
  216. package/dist/esm/theme/light/histogram.js +29 -0
  217. package/dist/esm/theme/light/histogram.js.map +1 -0
  218. package/dist/esm/theme/light/light.js +42 -334
  219. package/dist/esm/theme/light/light.js.map +1 -1
  220. package/dist/esm/theme/light/line.d.ts +78 -0
  221. package/dist/esm/theme/light/line.js +28 -0
  222. package/dist/esm/theme/light/line.js.map +1 -0
  223. package/dist/esm/theme/light/pie.d.ts +130 -0
  224. package/dist/esm/theme/light/pie.js +26 -0
  225. package/dist/esm/theme/light/pie.js.map +1 -0
  226. package/dist/esm/theme/light/race.d.ts +899 -0
  227. package/dist/esm/theme/light/race.js +172 -0
  228. package/dist/esm/theme/light/race.js.map +1 -0
  229. package/dist/esm/theme/light/radar.d.ts +63 -0
  230. package/dist/esm/theme/light/radar.js +19 -0
  231. package/dist/esm/theme/light/radar.js.map +1 -0
  232. package/dist/esm/theme/light/rose.d.ts +128 -0
  233. package/dist/esm/theme/light/rose.js +25 -0
  234. package/dist/esm/theme/light/rose.js.map +1 -0
  235. package/dist/esm/theme/light/scatter.d.ts +345 -0
  236. package/dist/esm/theme/light/scatter.js +50 -0
  237. package/dist/esm/theme/light/scatter.js.map +1 -0
  238. package/dist/esm/types/chartType/area/zArea.d.ts +13 -2
  239. package/dist/esm/types/chartType/areaPercent/zAreaPercent.d.ts +13 -2
  240. package/dist/esm/types/chartType/bar/zBar.d.ts +13 -2
  241. package/dist/esm/types/chartType/barParallel/zBarParallel.d.ts +13 -2
  242. package/dist/esm/types/chartType/barPercent/zBarPercent.d.ts +13 -2
  243. package/dist/esm/types/chartType/boxPlot/zBoxPlot.d.ts +13 -2
  244. package/dist/esm/types/chartType/circlePacking/circlePacking.d.ts +85 -0
  245. package/dist/esm/types/chartType/circlePacking/circlePacking.js +0 -0
  246. package/dist/esm/types/chartType/circlePacking/index.d.ts +2 -0
  247. package/dist/esm/types/chartType/circlePacking/index.js +1 -0
  248. package/dist/esm/types/chartType/circlePacking/zCirclePacking.d.ts +263 -0
  249. package/dist/esm/types/chartType/circlePacking/zCirclePacking.js +19 -0
  250. package/dist/esm/types/chartType/circlePacking/zCirclePacking.js.map +1 -0
  251. package/dist/esm/types/chartType/column/zColumn.d.ts +13 -3
  252. package/dist/esm/types/chartType/columnParallel/zColumnParallel.d.ts +13 -3
  253. package/dist/esm/types/chartType/columnPercent/zColumnPercent.d.ts +13 -2
  254. package/dist/esm/types/chartType/donut/zDonut.d.ts +4 -1
  255. package/dist/esm/types/chartType/dualAxis/zDualAxis.d.ts +26 -4
  256. package/dist/esm/types/chartType/funnel/zFunnel.d.ts +4 -1
  257. package/dist/esm/types/chartType/heatmap/zHeatmap.d.ts +2 -0
  258. package/dist/esm/types/chartType/histogram/zHistogram.d.ts +14 -3
  259. package/dist/esm/types/chartType/index.d.ts +3 -0
  260. package/dist/esm/types/chartType/index.js +3 -0
  261. package/dist/esm/types/chartType/line/zLine.d.ts +13 -2
  262. package/dist/esm/types/chartType/pie/zPie.d.ts +4 -1
  263. package/dist/esm/types/chartType/pivotTable/zPivotTable.d.ts +2 -0
  264. package/dist/esm/types/chartType/raceBar/raceBar.d.ts +3 -4
  265. package/dist/esm/types/chartType/raceBar/zRaceBar.d.ts +13 -3
  266. package/dist/esm/types/chartType/raceColumn/raceColumn.d.ts +3 -3
  267. package/dist/esm/types/chartType/raceColumn/zRaceColumn.d.ts +13 -3
  268. package/dist/esm/types/chartType/raceScatter/raceScatter.d.ts +16 -2
  269. package/dist/esm/types/chartType/raceScatter/zRaceScatter.d.ts +16 -4
  270. package/dist/esm/types/chartType/raceScatter/zRaceScatter.js +2 -0
  271. package/dist/esm/types/chartType/raceScatter/zRaceScatter.js.map +1 -1
  272. package/dist/esm/types/chartType/radar/zRadar.d.ts +4 -1
  273. package/dist/esm/types/chartType/rose/zRose.d.ts +4 -1
  274. package/dist/esm/types/chartType/roseParallel/zRoseParallel.d.ts +4 -1
  275. package/dist/esm/types/chartType/scatter/zScatter.d.ts +14 -3
  276. package/dist/esm/types/chartType/sunburst/index.d.ts +2 -0
  277. package/dist/esm/types/chartType/sunburst/index.js +1 -0
  278. package/dist/esm/types/chartType/sunburst/sunburst.d.ts +86 -0
  279. package/dist/esm/types/chartType/sunburst/sunburst.js +0 -0
  280. package/dist/esm/types/chartType/sunburst/zSunburst.d.ts +263 -0
  281. package/dist/esm/types/chartType/sunburst/zSunburst.js +19 -0
  282. package/dist/esm/types/chartType/sunburst/zSunburst.js.map +1 -0
  283. package/dist/esm/types/chartType/table/zTable.d.ts +2 -0
  284. package/dist/esm/types/chartType/treeMap/index.d.ts +2 -0
  285. package/dist/esm/types/chartType/treeMap/index.js +1 -0
  286. package/dist/esm/types/chartType/treeMap/treeMap.d.ts +85 -0
  287. package/dist/esm/types/chartType/treeMap/treeMap.js +0 -0
  288. package/dist/esm/types/chartType/treeMap/zTreeMap.d.ts +263 -0
  289. package/dist/esm/types/chartType/treeMap/zTreeMap.js +19 -0
  290. package/dist/esm/types/chartType/treeMap/zTreeMap.js.map +1 -0
  291. package/dist/esm/types/properties/chartType/chartType.d.ts +6 -1
  292. package/dist/esm/types/properties/chartType/chartType.js +6 -0
  293. package/dist/esm/types/properties/chartType/chartType.js.map +1 -1
  294. package/dist/esm/types/properties/config/annotation/index.d.ts +1 -1
  295. package/dist/esm/types/properties/config/annotation/index.js +1 -1
  296. package/dist/esm/types/properties/config/annotation/{zAnnotaion.js → zAnnotation.js} +1 -1
  297. package/dist/esm/types/properties/config/annotation/zAnnotation.js.map +1 -0
  298. package/dist/esm/types/properties/config/area.d.ts +18 -2
  299. package/dist/esm/types/properties/config/area.js +1 -1
  300. package/dist/esm/types/properties/config/area.js.map +1 -1
  301. package/dist/esm/types/properties/config/axes/bandAxis.d.ts +26 -0
  302. package/dist/esm/types/properties/config/axes/linearAxis.d.ts +30 -4
  303. package/dist/esm/types/properties/config/axes/zBandAxis.d.ts +8 -0
  304. package/dist/esm/types/properties/config/axes/zBandAxis.js +4 -0
  305. package/dist/esm/types/properties/config/axes/zBandAxis.js.map +1 -1
  306. package/dist/esm/types/properties/config/axes/zLinearAxis.d.ts +10 -2
  307. package/dist/esm/types/properties/config/axes/zLinearAxis.js +5 -1
  308. package/dist/esm/types/properties/config/axes/zLinearAxis.js.map +1 -1
  309. package/dist/esm/types/properties/config/bar.d.ts +27 -3
  310. package/dist/esm/types/properties/config/bar.js +1 -1
  311. package/dist/esm/types/properties/config/bar.js.map +1 -1
  312. package/dist/esm/types/properties/config/boxplot.d.ts +9 -1
  313. package/dist/esm/types/properties/config/boxplot.js +1 -1
  314. package/dist/esm/types/properties/config/boxplot.js.map +1 -1
  315. package/dist/esm/types/properties/config/circlePacking.d.ts +211 -0
  316. package/dist/esm/types/properties/config/circlePacking.js +18 -0
  317. package/dist/esm/types/properties/config/circlePacking.js.map +1 -0
  318. package/dist/esm/types/properties/config/column.d.ts +27 -3
  319. package/dist/esm/types/properties/config/column.js +1 -1
  320. package/dist/esm/types/properties/config/column.js.map +1 -1
  321. package/dist/esm/types/properties/config/config.d.ts +986 -183
  322. package/dist/esm/types/properties/config/config.js +6 -0
  323. package/dist/esm/types/properties/config/config.js.map +1 -1
  324. package/dist/esm/types/properties/config/dualAxis.d.ts +24 -4
  325. package/dist/esm/types/properties/config/dualAxis.js +1 -1
  326. package/dist/esm/types/properties/config/dualAxis.js.map +1 -1
  327. package/dist/esm/types/properties/config/heatmap.d.ts +8 -0
  328. package/dist/esm/types/properties/config/histogram.d.ts +9 -1
  329. package/dist/esm/types/properties/config/histogram.js +1 -1
  330. package/dist/esm/types/properties/config/histogram.js.map +1 -1
  331. package/dist/esm/types/properties/config/index.d.ts +3 -0
  332. package/dist/esm/types/properties/config/index.js +3 -0
  333. package/dist/esm/types/properties/config/line.d.ts +9 -1
  334. package/dist/esm/types/properties/config/line.js +1 -1
  335. package/dist/esm/types/properties/config/line.js.map +1 -1
  336. package/dist/esm/types/properties/config/player/player.d.ts +2 -2
  337. package/dist/esm/types/properties/config/player/zPlayer.d.ts +0 -1
  338. package/dist/esm/types/properties/config/player/zPlayer.js +0 -1
  339. package/dist/esm/types/properties/config/player/zPlayer.js.map +1 -1
  340. package/dist/esm/types/properties/config/race.d.ts +64 -12
  341. package/dist/esm/types/properties/config/race.js +2 -2
  342. package/dist/esm/types/properties/config/race.js.map +1 -1
  343. package/dist/esm/types/properties/config/scatter.d.ts +10 -2
  344. package/dist/esm/types/properties/config/scatter.js +1 -1
  345. package/dist/esm/types/properties/config/scatter.js.map +1 -1
  346. package/dist/esm/types/properties/config/sunburst.d.ts +211 -0
  347. package/dist/esm/types/properties/config/sunburst.js +18 -0
  348. package/dist/esm/types/properties/config/sunburst.js.map +1 -0
  349. package/dist/esm/types/properties/config/treeMap.d.ts +211 -0
  350. package/dist/esm/types/properties/config/treeMap.js +18 -0
  351. package/dist/esm/types/properties/config/treeMap.js.map +1 -0
  352. package/dist/esm/types/properties/datasetReshapeInfo/datasetReshapeInfo.d.ts +2 -0
  353. package/dist/esm/types/properties/datasetReshapeInfo/zDatasetReshapeInfo.d.ts +4 -0
  354. package/dist/esm/types/properties/datasetReshapeInfo/zDatasetReshapeInfo.js +2 -0
  355. package/dist/esm/types/properties/datasetReshapeInfo/zDatasetReshapeInfo.js.map +1 -1
  356. package/dist/esm/types/properties/dimensions/hierarchyDimension.d.ts +11 -0
  357. package/dist/esm/types/properties/dimensions/hierarchyDimension.js +0 -0
  358. package/dist/esm/types/properties/dimensions/index.d.ts +4 -0
  359. package/dist/esm/types/properties/dimensions/raceBarDimension.d.ts +17 -0
  360. package/dist/esm/types/properties/dimensions/raceBarDimension.js +0 -0
  361. package/dist/esm/types/properties/dimensions/raceColumnDimension.d.ts +20 -0
  362. package/dist/esm/types/properties/dimensions/raceColumnDimension.js +0 -0
  363. package/dist/esm/types/properties/dimensions/raceScatterDimension.d.ts +14 -0
  364. package/dist/esm/types/properties/dimensions/raceScatterDimension.js +0 -0
  365. package/dist/esm/types/properties/dimensions/zDimensions.d.ts +6 -0
  366. package/dist/esm/types/properties/dimensions/zDimensions.js +2 -11
  367. package/dist/esm/types/properties/dimensions/zDimensions.js.map +1 -1
  368. package/dist/esm/types/properties/encoding/dimensionEncoding.d.ts +1 -1
  369. package/dist/esm/types/properties/encoding/encoding.d.ts +11 -4
  370. package/dist/esm/types/properties/encoding/zDimensionEncoding.d.ts +4 -0
  371. package/dist/esm/types/properties/encoding/zDimensionEncoding.js +6 -2
  372. package/dist/esm/types/properties/encoding/zDimensionEncoding.js.map +1 -1
  373. package/dist/esm/types/properties/encoding/zEncoding.d.ts +4 -2
  374. package/dist/esm/types/properties/encoding/zEncoding.js +4 -2
  375. package/dist/esm/types/properties/encoding/zEncoding.js.map +1 -1
  376. package/dist/esm/types/properties/measures/hierarchyMeasures.d.ts +4 -0
  377. package/dist/esm/types/properties/measures/hierarchyMeasures.js +0 -0
  378. package/dist/esm/types/properties/measures/index.d.ts +2 -0
  379. package/dist/esm/types/properties/measures/raceBarMeasure.d.ts +12 -0
  380. package/dist/esm/types/properties/measures/raceBarMeasure.js +0 -0
  381. package/dist/esm/types/properties/theme/customTheme.d.ts +2762 -1156
  382. package/dist/esm/types/vseed.d.ts +2 -2
  383. package/dist/esm/types/zVseed.d.ts +1257 -266
  384. package/dist/esm/types/zVseed.js +4 -1
  385. package/dist/esm/types/zVseed.js.map +1 -1
  386. package/dist/umd/index.js +3912 -2187
  387. package/dist/umd/index.js.map +1 -1
  388. package/package.json +3 -2
  389. package/dist/esm/pipeline/spec/chart/pipes/player/playerXBand.js +0 -10
  390. package/dist/esm/pipeline/spec/chart/pipes/player/playerXBand.js.map +0 -1
  391. package/dist/esm/pipeline/spec/chart/pipes/player/playerXLinear.js +0 -14
  392. package/dist/esm/pipeline/spec/chart/pipes/player/playerXLinear.js.map +0 -1
  393. package/dist/esm/pipeline/spec/chart/pipes/player/playerYBand.js +0 -13
  394. package/dist/esm/pipeline/spec/chart/pipes/player/playerYBand.js.map +0 -1
  395. package/dist/esm/pipeline/spec/chart/pipes/player/playerYLinear.js +0 -14
  396. package/dist/esm/pipeline/spec/chart/pipes/player/playerYLinear.js.map +0 -1
  397. package/dist/esm/types/properties/config/annotation/zAnnotaion.js.map +0 -1
  398. /package/dist/esm/types/properties/config/annotation/{zAnnotaion.d.ts → zAnnotation.d.ts} +0 -0
@@ -0,0 +1,172 @@
1
+ import { getLightBrushConfig, getLightColor, getLightCrosshairLine, getLightCrosshairRect, getLightLabel, getLightLegend, getLightPivotChartGridConfig, getLightPlayer } from "../common/index.js";
2
+ import { getLightTooltip } from "../common/tooltip.js";
3
+ import { getLightAnnotation } from "../common/annotaion.js";
4
+ import { getLightBandAxis, getLightLinearAxis } from "../common/axes.js";
5
+ import { getLightRegressionLine } from "../common/regressionLine.js";
6
+ const getRaceBarTheme = ()=>{
7
+ const linearAxis = getLightLinearAxis();
8
+ const bandAxis = getLightBandAxis();
9
+ const barBandAxis = {
10
+ ...bandAxis,
11
+ labelAutoHide: false,
12
+ labelAutoHideGap: 1,
13
+ labelAutoLimit: false,
14
+ labelAutoLimitLength: void 0,
15
+ labelAutoRotate: false,
16
+ labelAutoRotateAngleRange: [
17
+ 0,
18
+ -45,
19
+ -90
20
+ ]
21
+ };
22
+ const crosshairRect = getLightCrosshairRect();
23
+ const player = getLightPlayer();
24
+ const baseConfig = {
25
+ backgroundColor: 'transparent',
26
+ color: getLightColor(),
27
+ label: getLightLabel(),
28
+ legend: getLightLegend(),
29
+ tooltip: getLightTooltip(),
30
+ brush: getLightBrushConfig()
31
+ };
32
+ return {
33
+ ...baseConfig,
34
+ legend: {
35
+ ...baseConfig.legend,
36
+ enable: false
37
+ },
38
+ xAxis: {
39
+ ...linearAxis,
40
+ animation: {
41
+ duration: player.interval,
42
+ easing: 'linear'
43
+ },
44
+ nice: false
45
+ },
46
+ yAxis: {
47
+ ...barBandAxis,
48
+ animation: {
49
+ duration: player.interval ? 0.6 * player.interval : void 0,
50
+ easing: 'cubicInOut'
51
+ }
52
+ },
53
+ crosshairRect,
54
+ player,
55
+ stackCornerRadius: [
56
+ 0,
57
+ 4,
58
+ 4,
59
+ 0
60
+ ],
61
+ pivotGrid: getLightPivotChartGridConfig(),
62
+ annotation: getLightAnnotation()
63
+ };
64
+ };
65
+ const getRaceColumnTheme = ()=>{
66
+ const linearAxis = getLightLinearAxis();
67
+ const bandAxis = getLightBandAxis();
68
+ const crosshairRect = getLightCrosshairRect();
69
+ const player = getLightPlayer();
70
+ const baseConfig = {
71
+ backgroundColor: 'transparent',
72
+ color: getLightColor(),
73
+ label: getLightLabel(),
74
+ legend: getLightLegend(),
75
+ tooltip: getLightTooltip(),
76
+ brush: getLightBrushConfig()
77
+ };
78
+ return {
79
+ ...baseConfig,
80
+ legend: {
81
+ ...baseConfig.legend,
82
+ enable: false
83
+ },
84
+ xAxis: {
85
+ ...bandAxis,
86
+ animation: {
87
+ duration: player.interval ? 0.6 * player.interval : void 0,
88
+ easing: 'cubicInOut'
89
+ }
90
+ },
91
+ yAxis: {
92
+ ...linearAxis,
93
+ animation: {
94
+ duration: player.interval,
95
+ easing: 'linear'
96
+ },
97
+ nice: false
98
+ },
99
+ crosshairRect,
100
+ player,
101
+ stackCornerRadius: [
102
+ 4,
103
+ 4,
104
+ 0,
105
+ 0
106
+ ],
107
+ pivotGrid: getLightPivotChartGridConfig(),
108
+ annotation: getLightAnnotation(),
109
+ regressionLine: getLightRegressionLine()
110
+ };
111
+ };
112
+ const getRaceScatterTheme = ()=>{
113
+ const linearAxis = getLightLinearAxis();
114
+ const crosshairLine = getLightCrosshairLine();
115
+ const player = getLightPlayer();
116
+ const baseConfig = {
117
+ backgroundColor: 'transparent',
118
+ color: getLightColor(),
119
+ label: getLightLabel(),
120
+ legend: getLightLegend(),
121
+ tooltip: getLightTooltip(),
122
+ brush: getLightBrushConfig()
123
+ };
124
+ return {
125
+ ...baseConfig,
126
+ legend: {
127
+ ...baseConfig.legend,
128
+ enable: false
129
+ },
130
+ crosshairLine,
131
+ sizeRange: [
132
+ 8,
133
+ 24
134
+ ],
135
+ xAxis: {
136
+ ...linearAxis,
137
+ max: true,
138
+ animation: {
139
+ duration: player.interval ? 0.6 * player.interval : void 0,
140
+ easing: 'cubicInOut'
141
+ },
142
+ line: {
143
+ ...linearAxis.line,
144
+ visible: true
145
+ }
146
+ },
147
+ yAxis: {
148
+ ...linearAxis,
149
+ max: true,
150
+ animation: {
151
+ duration: player.interval ? 0.6 * player.interval : void 0,
152
+ easing: 'cubicInOut'
153
+ },
154
+ line: {
155
+ ...linearAxis.line,
156
+ visible: true
157
+ }
158
+ },
159
+ label: {
160
+ ...baseConfig.label,
161
+ showValue: false,
162
+ showValuePercent: false
163
+ },
164
+ player,
165
+ pivotGrid: getLightPivotChartGridConfig(),
166
+ annotation: getLightAnnotation(),
167
+ regressionLine: getLightRegressionLine()
168
+ };
169
+ };
170
+ export { getRaceBarTheme, getRaceColumnTheme, getRaceScatterTheme };
171
+
172
+ //# sourceMappingURL=race.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"theme/light/race.js","sources":["webpack://@visactor/vseed/./src/theme/light/race.ts"],"sourcesContent":["import type { Player, YBandAxis } from 'src/types'\nimport {\n getLightColor,\n getLightLabel,\n getLightLegend,\n getLightBrushConfig,\n getLightPivotChartGridConfig,\n getLightCrosshairRect,\n getLightCrosshairLine,\n getLightPlayer,\n} from '../common'\nimport { getLightTooltip } from '../common/tooltip'\nimport { getLightAnnotation } from '../common/annotaion'\nimport { getLightBandAxis, getLightLinearAxis } from '../common/axes'\nimport { getLightRegressionLine } from '../common/regressionLine'\n\nexport const getRaceBarTheme = () => {\n const linearAxis = getLightLinearAxis()\n const bandAxis = getLightBandAxis()\n const barBandAxis: YBandAxis = {\n ...bandAxis,\n labelAutoHide: false,\n labelAutoHideGap: 1,\n labelAutoLimit: false,\n labelAutoLimitLength: undefined,\n labelAutoRotate: false,\n labelAutoRotateAngleRange: [0, -45, -90],\n }\n const crosshairRect = getLightCrosshairRect()\n const player = getLightPlayer() as Player\n\n const baseConfig = {\n backgroundColor: 'transparent',\n color: getLightColor(),\n label: getLightLabel(),\n legend: getLightLegend(),\n tooltip: getLightTooltip(),\n brush: getLightBrushConfig(),\n }\n\n return {\n ...baseConfig,\n legend: {\n ...baseConfig.legend,\n enable: false,\n },\n xAxis: {\n ...linearAxis,\n animation: {\n duration: player.interval,\n easing: 'linear',\n },\n nice: false,\n },\n yAxis: {\n ...barBandAxis,\n animation: {\n duration: player.interval ? player.interval * 0.6 : undefined,\n easing: 'cubicInOut',\n },\n },\n crosshairRect,\n player,\n\n stackCornerRadius: [0, 4, 4, 0],\n pivotGrid: getLightPivotChartGridConfig(),\n annotation: getLightAnnotation(),\n }\n}\n\nexport const getRaceColumnTheme = () => {\n const linearAxis = getLightLinearAxis()\n const bandAxis = getLightBandAxis()\n const crosshairRect = getLightCrosshairRect()\n const player = getLightPlayer() as Player\n\n const baseConfig = {\n backgroundColor: 'transparent',\n color: getLightColor(),\n label: getLightLabel(),\n legend: getLightLegend(),\n tooltip: getLightTooltip(),\n brush: getLightBrushConfig(),\n }\n\n return {\n ...baseConfig,\n legend: {\n ...baseConfig.legend,\n enable: false,\n },\n xAxis: {\n ...bandAxis,\n animation: {\n duration: player.interval ? player.interval * 0.6 : undefined,\n easing: 'cubicInOut',\n },\n },\n yAxis: {\n ...linearAxis,\n animation: {\n duration: player.interval,\n easing: 'linear',\n },\n nice: false,\n },\n crosshairRect,\n player,\n\n stackCornerRadius: [4, 4, 0, 0],\n pivotGrid: getLightPivotChartGridConfig(),\n annotation: getLightAnnotation(),\n\n regressionLine: getLightRegressionLine(),\n }\n}\n\nexport const getRaceScatterTheme = () => {\n const linearAxis = getLightLinearAxis()\n const crosshairLine = getLightCrosshairLine()\n const player = getLightPlayer() as Player\n\n const baseConfig = {\n backgroundColor: 'transparent',\n color: getLightColor(),\n label: getLightLabel(),\n legend: getLightLegend(),\n tooltip: getLightTooltip(),\n brush: getLightBrushConfig(),\n }\n\n return {\n ...baseConfig,\n legend: {\n ...baseConfig.legend,\n enable: false,\n },\n crosshairLine,\n sizeRange: [8, 24],\n xAxis: {\n ...linearAxis,\n max: true,\n animation: {\n duration: player.interval ? player.interval * 0.6 : undefined,\n easing: 'cubicInOut',\n },\n line: {\n ...linearAxis.line,\n visible: true,\n },\n },\n yAxis: {\n ...linearAxis,\n max: true,\n animation: {\n duration: player.interval ? player.interval * 0.6 : undefined,\n easing: 'cubicInOut',\n },\n line: {\n ...linearAxis.line,\n visible: true,\n },\n },\n label: {\n ...baseConfig.label,\n showValue: false,\n showValuePercent: false,\n },\n player,\n\n pivotGrid: getLightPivotChartGridConfig(),\n annotation: getLightAnnotation(),\n\n regressionLine: getLightRegressionLine(),\n }\n}\n"],"names":["getRaceBarTheme","linearAxis","getLightLinearAxis","bandAxis","getLightBandAxis","barBandAxis","undefined","crosshairRect","getLightCrosshairRect","player","getLightPlayer","baseConfig","getLightColor","getLightLabel","getLightLegend","getLightTooltip","getLightBrushConfig","getLightPivotChartGridConfig","getLightAnnotation","getRaceColumnTheme","getLightRegressionLine","getRaceScatterTheme","crosshairLine","getLightCrosshairLine"],"mappings":";;;;;AAgBO,MAAMA,kBAAkB;IAC7B,MAAMC,aAAaC;IACnB,MAAMC,WAAWC;IACjB,MAAMC,cAAyB;QAC7B,GAAGF,QAAQ;QACX,eAAe;QACf,kBAAkB;QAClB,gBAAgB;QAChB,sBAAsBG;QACtB,iBAAiB;QACjB,2BAA2B;YAAC;YAAG;YAAK;SAAI;IAC1C;IACA,MAAMC,gBAAgBC;IACtB,MAAMC,SAASC;IAEf,MAAMC,aAAa;QACjB,iBAAiB;QACjB,OAAOC;QACP,OAAOC;QACP,QAAQC;QACR,SAASC;QACT,OAAOC;IACT;IAEA,OAAO;QACL,GAAGL,UAAU;QACb,QAAQ;YACN,GAAGA,WAAW,MAAM;YACpB,QAAQ;QACV;QACA,OAAO;YACL,GAAGV,UAAU;YACb,WAAW;gBACT,UAAUQ,OAAO,QAAQ;gBACzB,QAAQ;YACV;YACA,MAAM;QACR;QACA,OAAO;YACL,GAAGJ,WAAW;YACd,WAAW;gBACT,UAAUI,OAAO,QAAQ,GAAGA,AAAkB,MAAlBA,OAAO,QAAQ,GAASH;gBACpD,QAAQ;YACV;QACF;QACAC;QACAE;QAEA,mBAAmB;YAAC;YAAG;YAAG;YAAG;SAAE;QAC/B,WAAWQ;QACX,YAAYC;IACd;AACF;AAEO,MAAMC,qBAAqB;IAChC,MAAMlB,aAAaC;IACnB,MAAMC,WAAWC;IACjB,MAAMG,gBAAgBC;IACtB,MAAMC,SAASC;IAEf,MAAMC,aAAa;QACjB,iBAAiB;QACjB,OAAOC;QACP,OAAOC;QACP,QAAQC;QACR,SAASC;QACT,OAAOC;IACT;IAEA,OAAO;QACL,GAAGL,UAAU;QACb,QAAQ;YACN,GAAGA,WAAW,MAAM;YACpB,QAAQ;QACV;QACA,OAAO;YACL,GAAGR,QAAQ;YACX,WAAW;gBACT,UAAUM,OAAO,QAAQ,GAAGA,AAAkB,MAAlBA,OAAO,QAAQ,GAASH;gBACpD,QAAQ;YACV;QACF;QACA,OAAO;YACL,GAAGL,UAAU;YACb,WAAW;gBACT,UAAUQ,OAAO,QAAQ;gBACzB,QAAQ;YACV;YACA,MAAM;QACR;QACAF;QACAE;QAEA,mBAAmB;YAAC;YAAG;YAAG;YAAG;SAAE;QAC/B,WAAWQ;QACX,YAAYC;QAEZ,gBAAgBE;IAClB;AACF;AAEO,MAAMC,sBAAsB;IACjC,MAAMpB,aAAaC;IACnB,MAAMoB,gBAAgBC;IACtB,MAAMd,SAASC;IAEf,MAAMC,aAAa;QACjB,iBAAiB;QACjB,OAAOC;QACP,OAAOC;QACP,QAAQC;QACR,SAASC;QACT,OAAOC;IACT;IAEA,OAAO;QACL,GAAGL,UAAU;QACb,QAAQ;YACN,GAAGA,WAAW,MAAM;YACpB,QAAQ;QACV;QACAW;QACA,WAAW;YAAC;YAAG;SAAG;QAClB,OAAO;YACL,GAAGrB,UAAU;YACb,KAAK;YACL,WAAW;gBACT,UAAUQ,OAAO,QAAQ,GAAGA,AAAkB,MAAlBA,OAAO,QAAQ,GAASH;gBACpD,QAAQ;YACV;YACA,MAAM;gBACJ,GAAGL,WAAW,IAAI;gBAClB,SAAS;YACX;QACF;QACA,OAAO;YACL,GAAGA,UAAU;YACb,KAAK;YACL,WAAW;gBACT,UAAUQ,OAAO,QAAQ,GAAGA,AAAkB,MAAlBA,OAAO,QAAQ,GAASH;gBACpD,QAAQ;YACV;YACA,MAAM;gBACJ,GAAGL,WAAW,IAAI;gBAClB,SAAS;YACX;QACF;QACA,OAAO;YACL,GAAGU,WAAW,KAAK;YACnB,WAAW;YACX,kBAAkB;QACpB;QACAF;QAEA,WAAWQ;QACX,YAAYC;QAEZ,gBAAgBE;IAClB;AACF"}
@@ -0,0 +1,63 @@
1
+ export declare const getRadarTheme: () => {
2
+ pivotGrid: {
3
+ borderColor?: string | null | undefined;
4
+ bodyFontColor?: string | null | undefined;
5
+ headerFontColor?: string | null | undefined;
6
+ headerBackgroundColor?: string | null | undefined;
7
+ hoverHeaderBackgroundColor?: string | null | undefined;
8
+ hoverHeaderInlineBackgroundColor?: string | null | undefined;
9
+ outlineBorderLineWidth?: number | null | undefined;
10
+ frameCornerRadius?: number | null | undefined;
11
+ minChartWidth?: number | null | undefined;
12
+ minChartHeight?: number | null | undefined;
13
+ titleFontColor?: string | null | undefined;
14
+ titleFontSize?: number | null | undefined;
15
+ titleFontWeight?: string | null | undefined;
16
+ chartGridColor?: string | null | undefined;
17
+ axisLabelColor?: string | null | undefined;
18
+ };
19
+ backgroundColor: string;
20
+ color: {
21
+ linearColorScheme: string[];
22
+ colorScheme: string[];
23
+ positiveColor: string;
24
+ negativeColor: string;
25
+ };
26
+ label: {
27
+ labelStroke: string;
28
+ enable: boolean;
29
+ wrap: boolean;
30
+ showValue: boolean;
31
+ showValuePercent: boolean;
32
+ labelColorSmartInvert: boolean;
33
+ labelOverlap: boolean;
34
+ };
35
+ legend: import("../..").Legend;
36
+ tooltip: {
37
+ enable?: boolean | null | undefined;
38
+ borderColor?: string | null | undefined;
39
+ borderWidth?: number | null | undefined;
40
+ borderRadius?: number | null | undefined;
41
+ padding?: number | number[] | null | undefined;
42
+ backgroundColor?: string | null | undefined;
43
+ lineHeight?: number | null | undefined;
44
+ fontSize?: number | null | undefined;
45
+ lineSpace?: number | null | undefined;
46
+ keyColor?: string | null | undefined;
47
+ valueColor?: string | null | undefined;
48
+ titleColor?: string | null | undefined;
49
+ };
50
+ brush: {
51
+ enable: boolean;
52
+ inBrushStyle?: {
53
+ opacity?: number | undefined;
54
+ stroke?: string | undefined;
55
+ lineWidth?: number | undefined;
56
+ } | undefined;
57
+ outOfBrushStyle?: {
58
+ opacity?: number | undefined;
59
+ stroke?: string | undefined;
60
+ lineWidth?: number | undefined;
61
+ } | undefined;
62
+ };
63
+ };
@@ -0,0 +1,19 @@
1
+ import { getLightBrushConfig, getLightColor, getLightLabel, getLightLegend, getLightPivotChartGridConfig } from "../common/index.js";
2
+ import { getLightTooltip } from "../common/tooltip.js";
3
+ const getRadarTheme = ()=>{
4
+ const baseConfig = {
5
+ backgroundColor: 'transparent',
6
+ color: getLightColor(),
7
+ label: getLightLabel(),
8
+ legend: getLightLegend(),
9
+ tooltip: getLightTooltip(),
10
+ brush: getLightBrushConfig()
11
+ };
12
+ return {
13
+ ...baseConfig,
14
+ pivotGrid: getLightPivotChartGridConfig()
15
+ };
16
+ };
17
+ export { getRadarTheme };
18
+
19
+ //# sourceMappingURL=radar.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"theme/light/radar.js","sources":["webpack://@visactor/vseed/./src/theme/light/radar.ts"],"sourcesContent":["import {\n getLightColor,\n getLightLabel,\n getLightLegend,\n getLightBrushConfig,\n getLightPivotChartGridConfig,\n} from '../common'\nimport { getLightTooltip } from '../common/tooltip'\n\nexport const getRadarTheme = () => {\n const baseConfig = {\n backgroundColor: 'transparent',\n color: getLightColor(),\n label: getLightLabel(),\n legend: getLightLegend(),\n tooltip: getLightTooltip(),\n brush: getLightBrushConfig(),\n }\n\n return {\n ...baseConfig,\n pivotGrid: getLightPivotChartGridConfig(),\n }\n}\n"],"names":["getRadarTheme","baseConfig","getLightColor","getLightLabel","getLightLegend","getLightTooltip","getLightBrushConfig","getLightPivotChartGridConfig"],"mappings":";;AASO,MAAMA,gBAAgB;IAC3B,MAAMC,aAAa;QACjB,iBAAiB;QACjB,OAAOC;QACP,OAAOC;QACP,QAAQC;QACR,SAASC;QACT,OAAOC;IACT;IAEA,OAAO;QACL,GAAGL,UAAU;QACb,WAAWM;IACb;AACF"}
@@ -0,0 +1,128 @@
1
+ export declare const getRoseTheme: () => {
2
+ label: {
3
+ showValuePercent: boolean;
4
+ showDimension: boolean;
5
+ labelStroke: string;
6
+ enable: boolean;
7
+ wrap: boolean;
8
+ showValue: boolean;
9
+ labelColorSmartInvert: boolean;
10
+ labelOverlap: boolean;
11
+ };
12
+ pivotGrid: {
13
+ borderColor?: string | null | undefined;
14
+ bodyFontColor?: string | null | undefined;
15
+ headerFontColor?: string | null | undefined;
16
+ headerBackgroundColor?: string | null | undefined;
17
+ hoverHeaderBackgroundColor?: string | null | undefined;
18
+ hoverHeaderInlineBackgroundColor?: string | null | undefined;
19
+ outlineBorderLineWidth?: number | null | undefined;
20
+ frameCornerRadius?: number | null | undefined;
21
+ minChartWidth?: number | null | undefined;
22
+ minChartHeight?: number | null | undefined;
23
+ titleFontColor?: string | null | undefined;
24
+ titleFontSize?: number | null | undefined;
25
+ titleFontWeight?: string | null | undefined;
26
+ chartGridColor?: string | null | undefined;
27
+ axisLabelColor?: string | null | undefined;
28
+ };
29
+ backgroundColor: string;
30
+ color: {
31
+ linearColorScheme: string[];
32
+ colorScheme: string[];
33
+ positiveColor: string;
34
+ negativeColor: string;
35
+ };
36
+ legend: import("../..").Legend;
37
+ tooltip: {
38
+ enable?: boolean | null | undefined;
39
+ borderColor?: string | null | undefined;
40
+ borderWidth?: number | null | undefined;
41
+ borderRadius?: number | null | undefined;
42
+ padding?: number | number[] | null | undefined;
43
+ backgroundColor?: string | null | undefined;
44
+ lineHeight?: number | null | undefined;
45
+ fontSize?: number | null | undefined;
46
+ lineSpace?: number | null | undefined;
47
+ keyColor?: string | null | undefined;
48
+ valueColor?: string | null | undefined;
49
+ titleColor?: string | null | undefined;
50
+ };
51
+ brush: {
52
+ enable: boolean;
53
+ inBrushStyle?: {
54
+ opacity?: number | undefined;
55
+ stroke?: string | undefined;
56
+ lineWidth?: number | undefined;
57
+ } | undefined;
58
+ outOfBrushStyle?: {
59
+ opacity?: number | undefined;
60
+ stroke?: string | undefined;
61
+ lineWidth?: number | undefined;
62
+ } | undefined;
63
+ };
64
+ };
65
+ export declare const getRoseParallelTheme: () => {
66
+ label: {
67
+ showValuePercent: boolean;
68
+ showDimension: boolean;
69
+ labelStroke: string;
70
+ enable: boolean;
71
+ wrap: boolean;
72
+ showValue: boolean;
73
+ labelColorSmartInvert: boolean;
74
+ labelOverlap: boolean;
75
+ };
76
+ pivotGrid: {
77
+ borderColor?: string | null | undefined;
78
+ bodyFontColor?: string | null | undefined;
79
+ headerFontColor?: string | null | undefined;
80
+ headerBackgroundColor?: string | null | undefined;
81
+ hoverHeaderBackgroundColor?: string | null | undefined;
82
+ hoverHeaderInlineBackgroundColor?: string | null | undefined;
83
+ outlineBorderLineWidth?: number | null | undefined;
84
+ frameCornerRadius?: number | null | undefined;
85
+ minChartWidth?: number | null | undefined;
86
+ minChartHeight?: number | null | undefined;
87
+ titleFontColor?: string | null | undefined;
88
+ titleFontSize?: number | null | undefined;
89
+ titleFontWeight?: string | null | undefined;
90
+ chartGridColor?: string | null | undefined;
91
+ axisLabelColor?: string | null | undefined;
92
+ };
93
+ backgroundColor: string;
94
+ color: {
95
+ linearColorScheme: string[];
96
+ colorScheme: string[];
97
+ positiveColor: string;
98
+ negativeColor: string;
99
+ };
100
+ legend: import("../..").Legend;
101
+ tooltip: {
102
+ enable?: boolean | null | undefined;
103
+ borderColor?: string | null | undefined;
104
+ borderWidth?: number | null | undefined;
105
+ borderRadius?: number | null | undefined;
106
+ padding?: number | number[] | null | undefined;
107
+ backgroundColor?: string | null | undefined;
108
+ lineHeight?: number | null | undefined;
109
+ fontSize?: number | null | undefined;
110
+ lineSpace?: number | null | undefined;
111
+ keyColor?: string | null | undefined;
112
+ valueColor?: string | null | undefined;
113
+ titleColor?: string | null | undefined;
114
+ };
115
+ brush: {
116
+ enable: boolean;
117
+ inBrushStyle?: {
118
+ opacity?: number | undefined;
119
+ stroke?: string | undefined;
120
+ lineWidth?: number | undefined;
121
+ } | undefined;
122
+ outOfBrushStyle?: {
123
+ opacity?: number | undefined;
124
+ stroke?: string | undefined;
125
+ lineWidth?: number | undefined;
126
+ } | undefined;
127
+ };
128
+ };
@@ -0,0 +1,25 @@
1
+ import { getLightBrushConfig, getLightColor, getLightLabel, getLightLegend, getLightPivotChartGridConfig } from "../common/index.js";
2
+ import { getLightTooltip } from "../common/tooltip.js";
3
+ const getRoseTheme = ()=>{
4
+ const baseConfig = {
5
+ backgroundColor: 'transparent',
6
+ color: getLightColor(),
7
+ label: getLightLabel(),
8
+ legend: getLightLegend(),
9
+ tooltip: getLightTooltip(),
10
+ brush: getLightBrushConfig()
11
+ };
12
+ return {
13
+ ...baseConfig,
14
+ label: {
15
+ ...baseConfig.label,
16
+ showValuePercent: true,
17
+ showDimension: true
18
+ },
19
+ pivotGrid: getLightPivotChartGridConfig()
20
+ };
21
+ };
22
+ const getRoseParallelTheme = ()=>getRoseTheme();
23
+ export { getRoseParallelTheme, getRoseTheme };
24
+
25
+ //# sourceMappingURL=rose.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"theme/light/rose.js","sources":["webpack://@visactor/vseed/./src/theme/light/rose.ts"],"sourcesContent":["import {\n getLightColor,\n getLightLabel,\n getLightLegend,\n getLightBrushConfig,\n getLightPivotChartGridConfig,\n} from '../common'\nimport { getLightTooltip } from '../common/tooltip'\n\nexport const getRoseTheme = () => {\n const baseConfig = {\n backgroundColor: 'transparent',\n color: getLightColor(),\n label: getLightLabel(),\n legend: getLightLegend(),\n tooltip: getLightTooltip(),\n brush: getLightBrushConfig(),\n }\n\n return {\n ...baseConfig,\n label: {\n ...baseConfig.label,\n showValuePercent: true,\n showDimension: true,\n },\n\n pivotGrid: getLightPivotChartGridConfig(),\n }\n}\n\nexport const getRoseParallelTheme = () => {\n return getRoseTheme()\n}\n"],"names":["getRoseTheme","baseConfig","getLightColor","getLightLabel","getLightLegend","getLightTooltip","getLightBrushConfig","getLightPivotChartGridConfig","getRoseParallelTheme"],"mappings":";;AASO,MAAMA,eAAe;IAC1B,MAAMC,aAAa;QACjB,iBAAiB;QACjB,OAAOC;QACP,OAAOC;QACP,QAAQC;QACR,SAASC;QACT,OAAOC;IACT;IAEA,OAAO;QACL,GAAGL,UAAU;QACb,OAAO;YACL,GAAGA,WAAW,KAAK;YACnB,kBAAkB;YAClB,eAAe;QACjB;QAEA,WAAWM;IACb;AACF;AAEO,MAAMC,uBAAuB,IAC3BR"}