@covalent/echarts 4.0.0 → 4.1.0-develop.10

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 (422) hide show
  1. package/README.md +4 -90
  2. package/bar/README.md +23 -21
  3. package/bar/bar.component.d.ts +30 -27
  4. package/bar/bar.module.d.ts +6 -1
  5. package/bar/covalent-echarts-bar.d.ts +2 -1
  6. package/bar/package.json +6 -7
  7. package/bar/{public-api.d.ts → public_api.d.ts} +0 -0
  8. package/base/README.md +26 -26
  9. package/base/axis/axis.component.d.ts +32 -29
  10. package/base/axis/x-axis.component.d.ts +3 -0
  11. package/base/axis/y-axis.component.d.ts +3 -0
  12. package/base/base.module.d.ts +9 -1
  13. package/base/chart-options.service.d.ts +3 -0
  14. package/base/chart.component.d.ts +6 -3
  15. package/base/covalent-echarts-base.d.ts +2 -2
  16. package/base/dataset/dataset.component.d.ts +8 -5
  17. package/base/package.json +6 -7
  18. package/base/{public-api.d.ts → public_api.d.ts} +0 -0
  19. package/base/series/series.component.d.ts +18 -15
  20. package/base/{axis → src/axis}/README.md +19 -19
  21. package/base/{dataset → src/dataset}/README.md +19 -16
  22. package/covalent-echarts.d.ts +2 -1
  23. package/esm2020/bar/bar.component.mjs +135 -0
  24. package/esm2020/bar/bar.module.mjs +19 -0
  25. package/esm2020/bar/covalent-echarts-bar.mjs +5 -0
  26. package/esm2020/bar/public_api.mjs +3 -0
  27. package/esm2020/base/axis/axis.component.mjs +127 -0
  28. package/esm2020/base/axis/axis.interface.mjs +2 -0
  29. package/esm2020/base/axis/x-axis.component.mjs +55 -0
  30. package/esm2020/base/axis/y-axis.component.mjs +55 -0
  31. package/esm2020/base/base.module.mjs +35 -0
  32. package/esm2020/base/base.types.mjs +2 -0
  33. package/esm2020/base/chart-options.service.mjs +65 -0
  34. package/esm2020/base/chart.component.mjs +195 -0
  35. package/esm2020/base/covalent-echarts-base.mjs +5 -0
  36. package/esm2020/base/dataset/dataset.component.mjs +52 -0
  37. package/esm2020/base/public_api.mjs +10 -0
  38. package/esm2020/base/series/series.component.mjs +91 -0
  39. package/esm2020/base/series/series.interface.mjs +2 -0
  40. package/esm2020/base/themes/aqua-splash.mjs +487 -0
  41. package/esm2020/base/themes/california-coast.mjs +460 -0
  42. package/esm2020/base/themes/hawaiian-sunrise.mjs +460 -0
  43. package/esm2020/base/themes/passion-flower.mjs +460 -0
  44. package/esm2020/base/themes/razzleberry-pie.mjs +487 -0
  45. package/esm2020/base/themes/teradata-classic.mjs +487 -0
  46. package/{esm2015/base/themes/razzleberry-pie.js → esm2020/base/themes/teradata-default.mjs} +30 -35
  47. package/esm2020/base/themes/urban-sunrise.mjs +460 -0
  48. package/esm2020/base/themes/volcanic-eruption.mjs +460 -0
  49. package/esm2020/base/utils/assign-defined.mjs +25 -0
  50. package/esm2020/base/utils/echarts.mjs +49 -0
  51. package/esm2020/base/utils/index.mjs +3 -0
  52. package/esm2020/covalent-echarts.mjs +5 -0
  53. package/esm2020/graph/covalent-echarts-graph.mjs +5 -0
  54. package/esm2020/graph/graph.component.mjs +185 -0
  55. package/esm2020/graph/graph.module.mjs +21 -0
  56. package/esm2020/graph/public_api.mjs +3 -0
  57. package/esm2020/line/covalent-echarts-line.mjs +5 -0
  58. package/esm2020/line/line.component.mjs +159 -0
  59. package/esm2020/line/line.module.mjs +19 -0
  60. package/esm2020/line/public_api.mjs +3 -0
  61. package/esm2020/map/covalent-echarts-map.mjs +5 -0
  62. package/esm2020/map/map.component.mjs +132 -0
  63. package/esm2020/map/map.module.mjs +19 -0
  64. package/esm2020/map/public_api.mjs +3 -0
  65. package/esm2020/pie/covalent-echarts-pie.mjs +5 -0
  66. package/esm2020/pie/pie.component.mjs +127 -0
  67. package/esm2020/pie/pie.module.mjs +19 -0
  68. package/esm2020/pie/public_api.mjs +3 -0
  69. package/esm2020/public_api.mjs +2 -0
  70. package/esm2020/sankey/covalent-echarts-sankey.mjs +5 -0
  71. package/esm2020/sankey/public_api.mjs +3 -0
  72. package/esm2020/sankey/sankey.component.mjs +117 -0
  73. package/esm2020/sankey/sankey.module.mjs +21 -0
  74. package/esm2020/scatter/covalent-echarts-scatter.mjs +5 -0
  75. package/esm2020/scatter/public_api.mjs +3 -0
  76. package/esm2020/scatter/scatter.component.mjs +144 -0
  77. package/esm2020/scatter/scatter.module.mjs +21 -0
  78. package/esm2020/toolbox/covalent-echarts-toolbox.mjs +5 -0
  79. package/esm2020/toolbox/public_api.mjs +3 -0
  80. package/esm2020/toolbox/toolbox.component.mjs +135 -0
  81. package/esm2020/toolbox/toolbox.module.mjs +24 -0
  82. package/esm2020/tooltip/covalent-echarts-tooltip.mjs +5 -0
  83. package/esm2020/tooltip/public_api.mjs +4 -0
  84. package/esm2020/tooltip/series-tooltip.component.mjs +102 -0
  85. package/esm2020/tooltip/tooltip.component.mjs +156 -0
  86. package/esm2020/tooltip/tooltip.module.mjs +28 -0
  87. package/esm2020/tree/covalent-echarts-tree.mjs +5 -0
  88. package/esm2020/tree/public_api.mjs +3 -0
  89. package/esm2020/tree/tree.component.mjs +117 -0
  90. package/esm2020/tree/tree.module.mjs +19 -0
  91. package/esm2020/treemap/covalent-echarts-treemap.mjs +5 -0
  92. package/esm2020/treemap/public_api.mjs +3 -0
  93. package/esm2020/treemap/treemap.component.mjs +149 -0
  94. package/esm2020/treemap/treemap.module.mjs +21 -0
  95. package/esm2020/wordcloud/covalent-echarts-wordcloud.mjs +5 -0
  96. package/esm2020/wordcloud/public_api.mjs +3 -0
  97. package/esm2020/wordcloud/wordcloud.component.mjs +92 -0
  98. package/esm2020/wordcloud/wordcloud.module.mjs +21 -0
  99. package/fesm2015/covalent-echarts-bar.mjs +158 -0
  100. package/fesm2015/covalent-echarts-bar.mjs.map +1 -0
  101. package/fesm2015/{covalent-echarts-base.js → covalent-echarts-base.mjs} +390 -856
  102. package/fesm2015/covalent-echarts-base.mjs.map +1 -0
  103. package/fesm2015/covalent-echarts-graph.mjs +210 -0
  104. package/fesm2015/covalent-echarts-graph.mjs.map +1 -0
  105. package/fesm2015/covalent-echarts-line.mjs +182 -0
  106. package/fesm2015/covalent-echarts-line.mjs.map +1 -0
  107. package/fesm2015/covalent-echarts-map.mjs +155 -0
  108. package/fesm2015/covalent-echarts-map.mjs.map +1 -0
  109. package/fesm2015/covalent-echarts-pie.mjs +150 -0
  110. package/fesm2015/covalent-echarts-pie.mjs.map +1 -0
  111. package/fesm2015/covalent-echarts-sankey.mjs +142 -0
  112. package/fesm2015/covalent-echarts-sankey.mjs.map +1 -0
  113. package/fesm2015/covalent-echarts-scatter.mjs +169 -0
  114. package/fesm2015/covalent-echarts-scatter.mjs.map +1 -0
  115. package/fesm2015/covalent-echarts-toolbox.mjs +158 -0
  116. package/fesm2015/covalent-echarts-toolbox.mjs.map +1 -0
  117. package/fesm2015/covalent-echarts-tooltip.mjs +283 -0
  118. package/fesm2015/covalent-echarts-tooltip.mjs.map +1 -0
  119. package/fesm2015/covalent-echarts-tree.mjs +140 -0
  120. package/fesm2015/covalent-echarts-tree.mjs.map +1 -0
  121. package/fesm2015/covalent-echarts-treemap.mjs +174 -0
  122. package/fesm2015/covalent-echarts-treemap.mjs.map +1 -0
  123. package/fesm2015/covalent-echarts-wordcloud.mjs +117 -0
  124. package/fesm2015/covalent-echarts-wordcloud.mjs.map +1 -0
  125. package/fesm2015/covalent-echarts.mjs +4 -0
  126. package/fesm2015/covalent-echarts.mjs.map +1 -0
  127. package/fesm2020/covalent-echarts-bar.mjs +158 -0
  128. package/fesm2020/covalent-echarts-bar.mjs.map +1 -0
  129. package/fesm2020/covalent-echarts-base.mjs +4930 -0
  130. package/fesm2020/covalent-echarts-base.mjs.map +1 -0
  131. package/fesm2020/covalent-echarts-graph.mjs +210 -0
  132. package/fesm2020/covalent-echarts-graph.mjs.map +1 -0
  133. package/fesm2020/covalent-echarts-line.mjs +182 -0
  134. package/fesm2020/covalent-echarts-line.mjs.map +1 -0
  135. package/fesm2020/covalent-echarts-map.mjs +155 -0
  136. package/fesm2020/covalent-echarts-map.mjs.map +1 -0
  137. package/fesm2020/covalent-echarts-pie.mjs +150 -0
  138. package/fesm2020/covalent-echarts-pie.mjs.map +1 -0
  139. package/fesm2020/covalent-echarts-sankey.mjs +142 -0
  140. package/fesm2020/covalent-echarts-sankey.mjs.map +1 -0
  141. package/fesm2020/covalent-echarts-scatter.mjs +169 -0
  142. package/fesm2020/covalent-echarts-scatter.mjs.map +1 -0
  143. package/fesm2020/covalent-echarts-toolbox.mjs +163 -0
  144. package/fesm2020/covalent-echarts-toolbox.mjs.map +1 -0
  145. package/fesm2020/covalent-echarts-tooltip.mjs +283 -0
  146. package/fesm2020/covalent-echarts-tooltip.mjs.map +1 -0
  147. package/fesm2020/covalent-echarts-tree.mjs +140 -0
  148. package/fesm2020/covalent-echarts-tree.mjs.map +1 -0
  149. package/fesm2020/covalent-echarts-treemap.mjs +174 -0
  150. package/fesm2020/covalent-echarts-treemap.mjs.map +1 -0
  151. package/fesm2020/covalent-echarts-wordcloud.mjs +117 -0
  152. package/fesm2020/covalent-echarts-wordcloud.mjs.map +1 -0
  153. package/fesm2020/covalent-echarts.mjs +4 -0
  154. package/fesm2020/covalent-echarts.mjs.map +1 -0
  155. package/graph/README.md +21 -19
  156. package/graph/covalent-echarts-graph.d.ts +2 -1
  157. package/graph/graph.component.d.ts +63 -60
  158. package/graph/graph.module.d.ts +6 -1
  159. package/graph/package.json +6 -7
  160. package/graph/{public-api.d.ts → public_api.d.ts} +0 -0
  161. package/line/README.md +19 -21
  162. package/line/covalent-echarts-line.d.ts +2 -1
  163. package/line/line.component.d.ts +38 -35
  164. package/line/line.module.d.ts +6 -1
  165. package/line/package.json +6 -7
  166. package/line/{public-api.d.ts → public_api.d.ts} +0 -0
  167. package/map/README.md +19 -17
  168. package/map/covalent-echarts-map.d.ts +2 -1
  169. package/map/map.component.d.ts +30 -27
  170. package/map/map.module.d.ts +6 -1
  171. package/map/package.json +6 -7
  172. package/map/{public-api.d.ts → public_api.d.ts} +0 -0
  173. package/package.json +130 -22
  174. package/pie/README.md +17 -15
  175. package/pie/covalent-echarts-pie.d.ts +2 -1
  176. package/pie/package.json +6 -7
  177. package/pie/pie.component.d.ts +29 -26
  178. package/pie/pie.module.d.ts +6 -1
  179. package/pie/{public-api.d.ts → public_api.d.ts} +0 -0
  180. package/{index.d.ts → public_api.d.ts} +0 -0
  181. package/sankey/README.md +22 -20
  182. package/sankey/covalent-echarts-sankey.d.ts +2 -1
  183. package/sankey/package.json +6 -7
  184. package/sankey/{public-api.d.ts → public_api.d.ts} +0 -0
  185. package/sankey/sankey.component.d.ts +25 -22
  186. package/sankey/sankey.module.d.ts +6 -1
  187. package/scatter/README.md +19 -21
  188. package/scatter/covalent-echarts-scatter.d.ts +2 -1
  189. package/scatter/package.json +6 -7
  190. package/scatter/{public-api.d.ts → public_api.d.ts} +0 -0
  191. package/scatter/scatter.component.d.ts +34 -31
  192. package/scatter/scatter.module.d.ts +6 -1
  193. package/toolbox/README.md +12 -11
  194. package/toolbox/covalent-echarts-toolbox.d.ts +2 -1
  195. package/toolbox/package.json +6 -7
  196. package/toolbox/{public-api.d.ts → public_api.d.ts} +0 -0
  197. package/toolbox/toolbox.component.d.ts +15 -10
  198. package/toolbox/toolbox.module.d.ts +6 -1
  199. package/tooltip/README.md +30 -26
  200. package/tooltip/covalent-echarts-tooltip.d.ts +2 -1
  201. package/tooltip/package.json +6 -7
  202. package/tooltip/{public-api.d.ts → public_api.d.ts} +0 -0
  203. package/tooltip/series-tooltip.component.d.ts +14 -9
  204. package/tooltip/tooltip.component.d.ts +21 -16
  205. package/tooltip/tooltip.module.d.ts +7 -1
  206. package/tree/README.md +20 -18
  207. package/tree/covalent-echarts-tree.d.ts +2 -1
  208. package/tree/package.json +6 -7
  209. package/tree/{public-api.d.ts → public_api.d.ts} +0 -0
  210. package/tree/tree.component.d.ts +27 -24
  211. package/tree/tree.module.d.ts +6 -1
  212. package/treemap/README.md +23 -21
  213. package/treemap/covalent-echarts-treemap.d.ts +2 -1
  214. package/treemap/package.json +6 -7
  215. package/treemap/{public-api.d.ts → public_api.d.ts} +0 -0
  216. package/treemap/treemap.component.d.ts +40 -37
  217. package/treemap/treemap.module.d.ts +6 -1
  218. package/wordcloud/README.md +25 -23
  219. package/wordcloud/covalent-echarts-wordcloud.d.ts +2 -1
  220. package/wordcloud/package.json +6 -7
  221. package/wordcloud/{public-api.d.ts → public_api.d.ts} +0 -0
  222. package/wordcloud/wordcloud.component.d.ts +17 -14
  223. package/wordcloud/wordcloud.module.d.ts +6 -1
  224. package/bar/covalent-echarts-bar.metadata.json +0 -1
  225. package/bar/index.d.ts +0 -1
  226. package/base/chart.component.scss +0 -4
  227. package/base/covalent-echarts-base.metadata.json +0 -1
  228. package/base/index.d.ts +0 -1
  229. package/bundles/covalent-echarts-bar.umd.js +0 -588
  230. package/bundles/covalent-echarts-bar.umd.js.map +0 -1
  231. package/bundles/covalent-echarts-bar.umd.min.js +0 -16
  232. package/bundles/covalent-echarts-bar.umd.min.js.map +0 -1
  233. package/bundles/covalent-echarts-base.umd.js +0 -5750
  234. package/bundles/covalent-echarts-base.umd.js.map +0 -1
  235. package/bundles/covalent-echarts-base.umd.min.js +0 -16
  236. package/bundles/covalent-echarts-base.umd.min.js.map +0 -1
  237. package/bundles/covalent-echarts-graph.umd.js +0 -745
  238. package/bundles/covalent-echarts-graph.umd.js.map +0 -1
  239. package/bundles/covalent-echarts-graph.umd.min.js +0 -16
  240. package/bundles/covalent-echarts-graph.umd.min.js.map +0 -1
  241. package/bundles/covalent-echarts-line.umd.js +0 -638
  242. package/bundles/covalent-echarts-line.umd.js.map +0 -1
  243. package/bundles/covalent-echarts-line.umd.min.js +0 -16
  244. package/bundles/covalent-echarts-line.umd.min.js.map +0 -1
  245. package/bundles/covalent-echarts-map.umd.js +0 -600
  246. package/bundles/covalent-echarts-map.umd.js.map +0 -1
  247. package/bundles/covalent-echarts-map.umd.min.js +0 -16
  248. package/bundles/covalent-echarts-map.umd.min.js.map +0 -1
  249. package/bundles/covalent-echarts-pie.umd.js +0 -574
  250. package/bundles/covalent-echarts-pie.umd.js.map +0 -1
  251. package/bundles/covalent-echarts-pie.umd.min.js +0 -16
  252. package/bundles/covalent-echarts-pie.umd.min.js.map +0 -1
  253. package/bundles/covalent-echarts-sankey.umd.js +0 -570
  254. package/bundles/covalent-echarts-sankey.umd.js.map +0 -1
  255. package/bundles/covalent-echarts-sankey.umd.min.js +0 -16
  256. package/bundles/covalent-echarts-sankey.umd.min.js.map +0 -1
  257. package/bundles/covalent-echarts-scatter.umd.js +0 -610
  258. package/bundles/covalent-echarts-scatter.umd.js.map +0 -1
  259. package/bundles/covalent-echarts-scatter.umd.min.js +0 -16
  260. package/bundles/covalent-echarts-scatter.umd.min.js.map +0 -1
  261. package/bundles/covalent-echarts-toolbox.umd.js +0 -460
  262. package/bundles/covalent-echarts-toolbox.umd.js.map +0 -1
  263. package/bundles/covalent-echarts-toolbox.umd.min.js +0 -2
  264. package/bundles/covalent-echarts-toolbox.umd.min.js.map +0 -1
  265. package/bundles/covalent-echarts-tooltip.umd.js +0 -476
  266. package/bundles/covalent-echarts-tooltip.umd.js.map +0 -1
  267. package/bundles/covalent-echarts-tooltip.umd.min.js +0 -2
  268. package/bundles/covalent-echarts-tooltip.umd.min.js.map +0 -1
  269. package/bundles/covalent-echarts-tree.umd.js +0 -584
  270. package/bundles/covalent-echarts-tree.umd.js.map +0 -1
  271. package/bundles/covalent-echarts-tree.umd.min.js +0 -16
  272. package/bundles/covalent-echarts-tree.umd.min.js.map +0 -1
  273. package/bundles/covalent-echarts-treemap.umd.js +0 -728
  274. package/bundles/covalent-echarts-treemap.umd.js.map +0 -1
  275. package/bundles/covalent-echarts-treemap.umd.min.js +0 -16
  276. package/bundles/covalent-echarts-treemap.umd.min.js.map +0 -1
  277. package/bundles/covalent-echarts-wordcloud.umd.js +0 -521
  278. package/bundles/covalent-echarts-wordcloud.umd.js.map +0 -1
  279. package/bundles/covalent-echarts-wordcloud.umd.min.js +0 -16
  280. package/bundles/covalent-echarts-wordcloud.umd.min.js.map +0 -1
  281. package/bundles/covalent-echarts.umd.js +0 -9
  282. package/bundles/covalent-echarts.umd.js.map +0 -1
  283. package/bundles/covalent-echarts.umd.min.js +0 -2
  284. package/bundles/covalent-echarts.umd.min.js.map +0 -1
  285. package/covalent-echarts.metadata.json +0 -1
  286. package/esm2015/bar/bar.component.js +0 -241
  287. package/esm2015/bar/bar.module.js +0 -21
  288. package/esm2015/bar/covalent-echarts-bar.js +0 -10
  289. package/esm2015/bar/index.js +0 -7
  290. package/esm2015/bar/public-api.js +0 -8
  291. package/esm2015/base/axis/axis.component.js +0 -209
  292. package/esm2015/base/axis/axis.interface.js +0 -324
  293. package/esm2015/base/axis/x-axis.component.js +0 -67
  294. package/esm2015/base/axis/y-axis.component.js +0 -67
  295. package/esm2015/base/base.module.js +0 -31
  296. package/esm2015/base/base.types.js +0 -278
  297. package/esm2015/base/chart-options.service.js +0 -115
  298. package/esm2015/base/chart.component.js +0 -354
  299. package/esm2015/base/covalent-echarts-base.js +0 -11
  300. package/esm2015/base/dataset/dataset.component.js +0 -93
  301. package/esm2015/base/index.js +0 -7
  302. package/esm2015/base/public-api.js +0 -15
  303. package/esm2015/base/series/series.component.js +0 -187
  304. package/esm2015/base/series/series.interface.js +0 -178
  305. package/esm2015/base/themes/aqua-splash.js +0 -465
  306. package/esm2015/base/themes/california-coast.js +0 -465
  307. package/esm2015/base/themes/hawaiian-sunrise.js +0 -465
  308. package/esm2015/base/themes/passion-flower.js +0 -465
  309. package/esm2015/base/themes/teradata-classic.js +0 -465
  310. package/esm2015/base/themes/teradata-default.js +0 -465
  311. package/esm2015/base/themes/urban-sunrise.js +0 -465
  312. package/esm2015/base/themes/volcanic-eruption.js +0 -465
  313. package/esm2015/base/utils/assign-defined.js +0 -37
  314. package/esm2015/base/utils/echarts.js +0 -60
  315. package/esm2015/base/utils/index.js +0 -8
  316. package/esm2015/covalent-echarts.js +0 -10
  317. package/esm2015/graph/covalent-echarts-graph.js +0 -10
  318. package/esm2015/graph/graph.component.js +0 -398
  319. package/esm2015/graph/graph.module.js +0 -21
  320. package/esm2015/graph/index.js +0 -7
  321. package/esm2015/graph/public-api.js +0 -8
  322. package/esm2015/index.js +0 -7
  323. package/esm2015/line/covalent-echarts-line.js +0 -10
  324. package/esm2015/line/index.js +0 -7
  325. package/esm2015/line/line.component.js +0 -291
  326. package/esm2015/line/line.module.js +0 -21
  327. package/esm2015/line/public-api.js +0 -8
  328. package/esm2015/map/covalent-echarts-map.js +0 -10
  329. package/esm2015/map/index.js +0 -7
  330. package/esm2015/map/map.component.js +0 -253
  331. package/esm2015/map/map.module.js +0 -21
  332. package/esm2015/map/public-api.js +0 -8
  333. package/esm2015/pie/covalent-echarts-pie.js +0 -10
  334. package/esm2015/pie/index.js +0 -7
  335. package/esm2015/pie/pie.component.js +0 -227
  336. package/esm2015/pie/pie.module.js +0 -21
  337. package/esm2015/pie/public-api.js +0 -8
  338. package/esm2015/sankey/covalent-echarts-sankey.js +0 -10
  339. package/esm2015/sankey/index.js +0 -7
  340. package/esm2015/sankey/public-api.js +0 -8
  341. package/esm2015/sankey/sankey.component.js +0 -223
  342. package/esm2015/sankey/sankey.module.js +0 -21
  343. package/esm2015/scatter/covalent-echarts-scatter.js +0 -10
  344. package/esm2015/scatter/index.js +0 -7
  345. package/esm2015/scatter/public-api.js +0 -8
  346. package/esm2015/scatter/scatter.component.js +0 -263
  347. package/esm2015/scatter/scatter.module.js +0 -21
  348. package/esm2015/toolbox/covalent-echarts-toolbox.js +0 -10
  349. package/esm2015/toolbox/index.js +0 -7
  350. package/esm2015/toolbox/public-api.js +0 -8
  351. package/esm2015/toolbox/toolbox.component.js +0 -405
  352. package/esm2015/toolbox/toolbox.module.js +0 -21
  353. package/esm2015/tooltip/covalent-echarts-tooltip.js +0 -10
  354. package/esm2015/tooltip/index.js +0 -7
  355. package/esm2015/tooltip/public-api.js +0 -9
  356. package/esm2015/tooltip/series-tooltip.component.js +0 -170
  357. package/esm2015/tooltip/tooltip.component.js +0 -246
  358. package/esm2015/tooltip/tooltip.module.js +0 -26
  359. package/esm2015/tree/covalent-echarts-tree.js +0 -10
  360. package/esm2015/tree/index.js +0 -7
  361. package/esm2015/tree/public-api.js +0 -8
  362. package/esm2015/tree/tree.component.js +0 -237
  363. package/esm2015/tree/tree.module.js +0 -21
  364. package/esm2015/treemap/covalent-echarts-treemap.js +0 -10
  365. package/esm2015/treemap/index.js +0 -7
  366. package/esm2015/treemap/public-api.js +0 -8
  367. package/esm2015/treemap/treemap.component.js +0 -380
  368. package/esm2015/treemap/treemap.module.js +0 -21
  369. package/esm2015/wordcloud/covalent-echarts-wordcloud.js +0 -10
  370. package/esm2015/wordcloud/index.js +0 -7
  371. package/esm2015/wordcloud/public-api.js +0 -8
  372. package/esm2015/wordcloud/wordcloud.component.js +0 -174
  373. package/esm2015/wordcloud/wordcloud.module.js +0 -21
  374. package/fesm2015/covalent-echarts-bar.js +0 -281
  375. package/fesm2015/covalent-echarts-bar.js.map +0 -1
  376. package/fesm2015/covalent-echarts-base.js.map +0 -1
  377. package/fesm2015/covalent-echarts-graph.js +0 -438
  378. package/fesm2015/covalent-echarts-graph.js.map +0 -1
  379. package/fesm2015/covalent-echarts-line.js +0 -331
  380. package/fesm2015/covalent-echarts-line.js.map +0 -1
  381. package/fesm2015/covalent-echarts-map.js +0 -293
  382. package/fesm2015/covalent-echarts-map.js.map +0 -1
  383. package/fesm2015/covalent-echarts-pie.js +0 -267
  384. package/fesm2015/covalent-echarts-pie.js.map +0 -1
  385. package/fesm2015/covalent-echarts-sankey.js +0 -263
  386. package/fesm2015/covalent-echarts-sankey.js.map +0 -1
  387. package/fesm2015/covalent-echarts-scatter.js +0 -303
  388. package/fesm2015/covalent-echarts-scatter.js.map +0 -1
  389. package/fesm2015/covalent-echarts-toolbox.js +0 -445
  390. package/fesm2015/covalent-echarts-toolbox.js.map +0 -1
  391. package/fesm2015/covalent-echarts-tooltip.js +0 -457
  392. package/fesm2015/covalent-echarts-tooltip.js.map +0 -1
  393. package/fesm2015/covalent-echarts-tree.js +0 -277
  394. package/fesm2015/covalent-echarts-tree.js.map +0 -1
  395. package/fesm2015/covalent-echarts-treemap.js +0 -420
  396. package/fesm2015/covalent-echarts-treemap.js.map +0 -1
  397. package/fesm2015/covalent-echarts-wordcloud.js +0 -214
  398. package/fesm2015/covalent-echarts-wordcloud.js.map +0 -1
  399. package/fesm2015/covalent-echarts.js +0 -12
  400. package/fesm2015/covalent-echarts.js.map +0 -1
  401. package/graph/covalent-echarts-graph.metadata.json +0 -1
  402. package/graph/index.d.ts +0 -1
  403. package/line/covalent-echarts-line.metadata.json +0 -1
  404. package/line/index.d.ts +0 -1
  405. package/map/covalent-echarts-map.metadata.json +0 -1
  406. package/map/index.d.ts +0 -1
  407. package/pie/covalent-echarts-pie.metadata.json +0 -1
  408. package/pie/index.d.ts +0 -1
  409. package/sankey/covalent-echarts-sankey.metadata.json +0 -1
  410. package/sankey/index.d.ts +0 -1
  411. package/scatter/covalent-echarts-scatter.metadata.json +0 -1
  412. package/scatter/index.d.ts +0 -1
  413. package/toolbox/covalent-echarts-toolbox.metadata.json +0 -1
  414. package/toolbox/index.d.ts +0 -1
  415. package/tooltip/covalent-echarts-tooltip.metadata.json +0 -1
  416. package/tooltip/index.d.ts +0 -1
  417. package/tree/covalent-echarts-tree.metadata.json +0 -1
  418. package/tree/index.d.ts +0 -1
  419. package/treemap/covalent-echarts-treemap.metadata.json +0 -1
  420. package/treemap/index.d.ts +0 -1
  421. package/wordcloud/covalent-echarts-wordcloud.metadata.json +0 -1
  422. package/wordcloud/index.d.ts +0 -1
@@ -1,277 +0,0 @@
1
- import { Component, ChangeDetectionStrategy, forwardRef, Input, NgModule } from '@angular/core';
2
- import { CommonModule } from '@angular/common';
3
- import 'echarts/lib/chart/tree';
4
- import { TdSeriesDirective, TdChartOptionsService } from '@covalent/echarts/base';
5
-
6
- /**
7
- * @fileoverview added by tsickle
8
- * Generated from: tree.component.ts
9
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
10
- */
11
- /**
12
- * @record
13
- */
14
- function ITdTreeEmphasisLineStyle() { }
15
- if (false) {
16
- /** @type {?|undefined} */
17
- ITdTreeEmphasisLineStyle.prototype.color;
18
- /** @type {?|undefined} */
19
- ITdTreeEmphasisLineStyle.prototype.width;
20
- /** @type {?|undefined} */
21
- ITdTreeEmphasisLineStyle.prototype.curveness;
22
- }
23
- /**
24
- * @record
25
- */
26
- function ITdTreeEmphasis() { }
27
- if (false) {
28
- /** @type {?} */
29
- ITdTreeEmphasis.prototype.lineStyle;
30
- }
31
- /**
32
- * @record
33
- */
34
- function ITdTreeLeaves() { }
35
- if (false) {
36
- /** @type {?|undefined} */
37
- ITdTreeLeaves.prototype.label;
38
- /** @type {?|undefined} */
39
- ITdTreeLeaves.prototype.itemStyle;
40
- /** @type {?} */
41
- ITdTreeLeaves.prototype.emphasis;
42
- }
43
- /**
44
- * @record
45
- */
46
- function ITdTreeSeries() { }
47
- if (false) {
48
- /** @type {?|undefined} */
49
- ITdTreeSeries.prototype.zlevel;
50
- /** @type {?|undefined} */
51
- ITdTreeSeries.prototype.z;
52
- /** @type {?|undefined} */
53
- ITdTreeSeries.prototype.left;
54
- /** @type {?|undefined} */
55
- ITdTreeSeries.prototype.top;
56
- /** @type {?|undefined} */
57
- ITdTreeSeries.prototype.right;
58
- /** @type {?|undefined} */
59
- ITdTreeSeries.prototype.bottom;
60
- /** @type {?|undefined} */
61
- ITdTreeSeries.prototype.width;
62
- /** @type {?|undefined} */
63
- ITdTreeSeries.prototype.height;
64
- /** @type {?|undefined} */
65
- ITdTreeSeries.prototype.layout;
66
- /** @type {?|undefined} */
67
- ITdTreeSeries.prototype.orient;
68
- /** @type {?|undefined} */
69
- ITdTreeSeries.prototype.symbol;
70
- /** @type {?|undefined} */
71
- ITdTreeSeries.prototype.symbolSize;
72
- /** @type {?|undefined} */
73
- ITdTreeSeries.prototype.symbolRotate;
74
- /** @type {?|undefined} */
75
- ITdTreeSeries.prototype.symbolKeepAspect;
76
- /** @type {?|undefined} */
77
- ITdTreeSeries.prototype.symbolOffset;
78
- /** @type {?|undefined} */
79
- ITdTreeSeries.prototype.roam;
80
- /** @type {?|undefined} */
81
- ITdTreeSeries.prototype.expandAndCollapse;
82
- /** @type {?|undefined} */
83
- ITdTreeSeries.prototype.initialTreeDepth;
84
- /** @type {?|undefined} */
85
- ITdTreeSeries.prototype.itemStyle;
86
- /** @type {?|undefined} */
87
- ITdTreeSeries.prototype.label;
88
- /** @type {?|undefined} */
89
- ITdTreeSeries.prototype.lineStyle;
90
- /** @type {?|undefined} */
91
- ITdTreeSeries.prototype.leaves;
92
- /** @type {?|undefined} */
93
- ITdTreeSeries.prototype.emphasis;
94
- /** @type {?} */
95
- ITdTreeSeries.prototype.data;
96
- }
97
- class TdChartSeriesTreeComponent extends TdSeriesDirective {
98
- /**
99
- * @param {?} _optionsService
100
- */
101
- constructor(_optionsService) {
102
- super('tree', _optionsService);
103
- }
104
- /**
105
- * @return {?}
106
- */
107
- getConfig() {
108
- return {
109
- zlevel: this.zlevel,
110
- z: this.z,
111
- left: this.left,
112
- top: this.top,
113
- right: this.right,
114
- bottom: this.bottom,
115
- width: this.width,
116
- height: this.height,
117
- layout: this.layout,
118
- orient: this.orient,
119
- symbol: this.symbol,
120
- symbolSize: this.symbolSize,
121
- symbolRotate: this.symbolRotate,
122
- symbolKeepAspect: this.symbolKeepAspect,
123
- roam: this.roam,
124
- expandAndCollapse: this.expandAndCollapse,
125
- initialTreeDepth: this.initialTreeDepth,
126
- itemStyle: this.itemStyle,
127
- label: this.label,
128
- lineStyle: this.lineStyle,
129
- leaves: this.leaves,
130
- emphasis: this.emphasis,
131
- };
132
- }
133
- }
134
- TdChartSeriesTreeComponent.decorators = [
135
- { type: Component, args: [{
136
- selector: 'td-chart-series[td-tree]',
137
- template: '',
138
- changeDetection: ChangeDetectionStrategy.OnPush,
139
- inputs: [
140
- 'config',
141
- 'id',
142
- 'name',
143
- 'color',
144
- 'data',
145
- 'animation',
146
- 'animationThreshold',
147
- 'animationDuration',
148
- 'animationEasing',
149
- 'animationDelay',
150
- 'animationDurationUpdate',
151
- 'animationEasingUpdate',
152
- 'animationDelayUpdate',
153
- 'tooltip',
154
- ],
155
- providers: [
156
- {
157
- provide: TdSeriesDirective,
158
- useExisting: forwardRef((/**
159
- * @return {?}
160
- */
161
- () => TdChartSeriesTreeComponent)),
162
- },
163
- ]
164
- }] }
165
- ];
166
- /** @nocollapse */
167
- TdChartSeriesTreeComponent.ctorParameters = () => [
168
- { type: TdChartOptionsService }
169
- ];
170
- TdChartSeriesTreeComponent.propDecorators = {
171
- zlevel: [{ type: Input }],
172
- z: [{ type: Input }],
173
- left: [{ type: Input }],
174
- top: [{ type: Input }],
175
- right: [{ type: Input }],
176
- bottom: [{ type: Input }],
177
- width: [{ type: Input }],
178
- height: [{ type: Input }],
179
- layout: [{ type: Input }],
180
- orient: [{ type: Input }],
181
- symbol: [{ type: Input }],
182
- symbolSize: [{ type: Input }],
183
- symbolRotate: [{ type: Input }],
184
- symbolKeepAspect: [{ type: Input }],
185
- roam: [{ type: Input }],
186
- expandAndCollapse: [{ type: Input }],
187
- initialTreeDepth: [{ type: Input }],
188
- itemStyle: [{ type: Input }],
189
- label: [{ type: Input }],
190
- lineStyle: [{ type: Input }],
191
- leaves: [{ type: Input }],
192
- emphasis: [{ type: Input }]
193
- };
194
- if (false) {
195
- /** @type {?} */
196
- TdChartSeriesTreeComponent.prototype.zlevel;
197
- /** @type {?} */
198
- TdChartSeriesTreeComponent.prototype.z;
199
- /** @type {?} */
200
- TdChartSeriesTreeComponent.prototype.left;
201
- /** @type {?} */
202
- TdChartSeriesTreeComponent.prototype.top;
203
- /** @type {?} */
204
- TdChartSeriesTreeComponent.prototype.right;
205
- /** @type {?} */
206
- TdChartSeriesTreeComponent.prototype.bottom;
207
- /** @type {?} */
208
- TdChartSeriesTreeComponent.prototype.width;
209
- /** @type {?} */
210
- TdChartSeriesTreeComponent.prototype.height;
211
- /** @type {?} */
212
- TdChartSeriesTreeComponent.prototype.layout;
213
- /** @type {?} */
214
- TdChartSeriesTreeComponent.prototype.orient;
215
- /** @type {?} */
216
- TdChartSeriesTreeComponent.prototype.symbol;
217
- /** @type {?} */
218
- TdChartSeriesTreeComponent.prototype.symbolSize;
219
- /** @type {?} */
220
- TdChartSeriesTreeComponent.prototype.symbolRotate;
221
- /** @type {?} */
222
- TdChartSeriesTreeComponent.prototype.symbolKeepAspect;
223
- /** @type {?} */
224
- TdChartSeriesTreeComponent.prototype.roam;
225
- /** @type {?} */
226
- TdChartSeriesTreeComponent.prototype.expandAndCollapse;
227
- /** @type {?} */
228
- TdChartSeriesTreeComponent.prototype.initialTreeDepth;
229
- /** @type {?} */
230
- TdChartSeriesTreeComponent.prototype.itemStyle;
231
- /** @type {?} */
232
- TdChartSeriesTreeComponent.prototype.label;
233
- /** @type {?} */
234
- TdChartSeriesTreeComponent.prototype.lineStyle;
235
- /** @type {?} */
236
- TdChartSeriesTreeComponent.prototype.leaves;
237
- /** @type {?} */
238
- TdChartSeriesTreeComponent.prototype.emphasis;
239
- }
240
-
241
- /**
242
- * @fileoverview added by tsickle
243
- * Generated from: tree.module.ts
244
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
245
- */
246
- /** @type {?} */
247
- const TREE_MODULE_COMPONENTS = [TdChartSeriesTreeComponent];
248
- class CovalentTreeEchartsModule {
249
- }
250
- CovalentTreeEchartsModule.decorators = [
251
- { type: NgModule, args: [{
252
- imports: [CommonModule],
253
- declarations: [TREE_MODULE_COMPONENTS],
254
- exports: [TREE_MODULE_COMPONENTS],
255
- },] }
256
- ];
257
-
258
- /**
259
- * @fileoverview added by tsickle
260
- * Generated from: public-api.ts
261
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
262
- */
263
-
264
- /**
265
- * @fileoverview added by tsickle
266
- * Generated from: index.ts
267
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
268
- */
269
-
270
- /**
271
- * @fileoverview added by tsickle
272
- * Generated from: covalent-echarts-tree.ts
273
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
274
- */
275
-
276
- export { CovalentTreeEchartsModule, TREE_MODULE_COMPONENTS, TdChartSeriesTreeComponent };
277
- //# sourceMappingURL=covalent-echarts-tree.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"covalent-echarts-tree.js","sources":["../../../../src/platform/echarts/tree/tree.component.ts","../../../../src/platform/echarts/tree/tree.module.ts"],"sourcesContent":["import { Component, Input, ChangeDetectionStrategy, forwardRef } from '@angular/core';\n\nimport {\n TdChartOptionsService,\n ITdItemStyle,\n ITdSeriesTooltip,\n TdMarkPointSymbol,\n ITdLabel,\n ITdLineStyle,\n ITdSeries,\n TdSeriesDirective,\n ITdEmphasis,\n ITdShadow,\n} from '@covalent/echarts/base';\n\n/**\n * ECHART OPTION DOCS\n * https://ecomfe.github.io/echarts-doc/public/en/option.html#series-tree\n *\n */\n\n/**\n * LR - from left to right\n * RL - from right to left\n * TB - from top to bottom\n * BT - from bottom to top\n */\nexport type TdTreeOrient = 'LR' | 'RL' | 'TB' | 'BT';\n\nexport type TdTreeLayout = 'orthogonal' | 'radial';\n\nexport interface ITdTreeEmphasisLineStyle extends ITdShadow {\n color?: any;\n width?: number;\n curveness?: number;\n}\n\nexport interface ITdTreeEmphasis extends ITdEmphasis {\n lineStyle: ITdTreeEmphasisLineStyle;\n}\n\nexport interface ITdTreeLeaves {\n label?: ITdLabel;\n itemStyle?: ITdItemStyle;\n emphasis: ITdEmphasis;\n}\n\ninterface ITdTreeSeries extends ITdSeries {\n zlevel?: number;\n z?: number;\n left?: string | number;\n top?: string | number;\n right?: string | number;\n bottom?: string | number;\n width?: string | number;\n height?: string | number;\n layout?: TdTreeLayout;\n orient?: TdTreeOrient;\n symbol?: TdMarkPointSymbol | string; // string added for custom SVG, URL or dataURI\n symbolSize?: number;\n symbolRotate?: number;\n symbolKeepAspect?: boolean;\n symbolOffset?: any[];\n roam?: boolean | string;\n expandAndCollapse?: boolean;\n initialTreeDepth?: number;\n itemStyle?: ITdItemStyle;\n label?: ITdLabel;\n lineStyle?: ITdLineStyle;\n leaves?: ITdTreeLeaves;\n emphasis?: ITdTreeEmphasis;\n data: any[];\n}\n\n@Component({\n selector: 'td-chart-series[td-tree]',\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n inputs: [\n 'config',\n 'id',\n 'name',\n 'color',\n 'data',\n\n 'animation',\n 'animationThreshold',\n 'animationDuration',\n 'animationEasing',\n 'animationDelay',\n 'animationDurationUpdate',\n 'animationEasingUpdate',\n 'animationDelayUpdate',\n 'tooltip',\n ],\n providers: [\n {\n provide: TdSeriesDirective,\n useExisting: forwardRef(() => TdChartSeriesTreeComponent),\n },\n ],\n})\nexport class TdChartSeriesTreeComponent extends TdSeriesDirective implements ITdTreeSeries {\n @Input() zlevel: number;\n @Input() z: number;\n @Input() left: string | number;\n @Input() top: string | number;\n @Input() right: string | number;\n @Input() bottom: string | number;\n @Input() width: string | number;\n @Input() height: string | number;\n @Input() layout: TdTreeLayout;\n @Input() orient: TdTreeOrient;\n @Input() symbol: TdMarkPointSymbol | string; // string added for custom SVG, URL or dataURI\n @Input() symbolSize: number; // string added for custom SVG, URL or dataURI\n @Input() symbolRotate: number;\n @Input() symbolKeepAspect: boolean;\n @Input() roam: boolean | string;\n @Input() expandAndCollapse: boolean;\n @Input() initialTreeDepth: number;\n @Input() itemStyle: ITdItemStyle;\n @Input() label: ITdLabel;\n @Input() lineStyle: ITdLineStyle;\n @Input() leaves: ITdTreeLeaves;\n @Input() emphasis: ITdTreeEmphasis;\n\n constructor(_optionsService: TdChartOptionsService) {\n super('tree', _optionsService);\n }\n\n getConfig(): any {\n return {\n zlevel: this.zlevel,\n z: this.z,\n left: this.left,\n top: this.top,\n right: this.right,\n bottom: this.bottom,\n width: this.width,\n height: this.height,\n layout: this.layout,\n orient: this.orient,\n symbol: this.symbol,\n symbolSize: this.symbolSize,\n symbolRotate: this.symbolRotate,\n symbolKeepAspect: this.symbolKeepAspect,\n roam: this.roam,\n expandAndCollapse: this.expandAndCollapse,\n initialTreeDepth: this.initialTreeDepth,\n itemStyle: this.itemStyle,\n label: this.label,\n lineStyle: this.lineStyle,\n leaves: this.leaves,\n emphasis: this.emphasis,\n };\n }\n}\n","import { NgModule, Type } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport 'echarts/lib/chart/tree';\n\nimport { TdChartSeriesTreeComponent } from './tree.component';\n\nexport const TREE_MODULE_COMPONENTS: Type<any>[] = [TdChartSeriesTreeComponent];\n\n@NgModule({\n imports: [CommonModule],\n declarations: [TREE_MODULE_COMPONENTS],\n exports: [TREE_MODULE_COMPONENTS],\n})\nexport class CovalentTreeEchartsModule {}\n"],"names":[],"mappings":"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"}