@covalent/echarts 4.0.0 → 4.1.1-beta.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (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 -31
  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,267 +0,0 @@
1
- import { Component, ChangeDetectionStrategy, forwardRef, Input, NgModule } from '@angular/core';
2
- import { CommonModule } from '@angular/common';
3
- import 'echarts/lib/chart/pie';
4
- import { TdSeriesDirective, TdChartOptionsService } from '@covalent/echarts/base';
5
-
6
- /**
7
- * @fileoverview added by tsickle
8
- * Generated from: pie.component.ts
9
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
10
- */
11
- /**
12
- * @record
13
- */
14
- function ITdPieSeries() { }
15
- if (false) {
16
- /** @type {?|undefined} */
17
- ITdPieSeries.prototype.legendHoverLink;
18
- /** @type {?|undefined} */
19
- ITdPieSeries.prototype.hoverAnimation;
20
- /** @type {?|undefined} */
21
- ITdPieSeries.prototype.hoverOffset;
22
- /** @type {?|undefined} */
23
- ITdPieSeries.prototype.selectedMode;
24
- /** @type {?|undefined} */
25
- ITdPieSeries.prototype.selectedOffset;
26
- /** @type {?|undefined} */
27
- ITdPieSeries.prototype.clockwise;
28
- /** @type {?|undefined} */
29
- ITdPieSeries.prototype.startAngle;
30
- /** @type {?|undefined} */
31
- ITdPieSeries.prototype.minAngle;
32
- /** @type {?|undefined} */
33
- ITdPieSeries.prototype.minShowLabelAngle;
34
- /** @type {?|undefined} */
35
- ITdPieSeries.prototype.roseType;
36
- /** @type {?|undefined} */
37
- ITdPieSeries.prototype.avoidLabelOverlap;
38
- /** @type {?|undefined} */
39
- ITdPieSeries.prototype.stillShowZeroSum;
40
- /** @type {?|undefined} */
41
- ITdPieSeries.prototype.cursor;
42
- /** @type {?|undefined} */
43
- ITdPieSeries.prototype.labelLine;
44
- /** @type {?|undefined} */
45
- ITdPieSeries.prototype.Label;
46
- /** @type {?|undefined} */
47
- ITdPieSeries.prototype.itemStyle;
48
- /** @type {?|undefined} */
49
- ITdPieSeries.prototype.emphasis;
50
- /** @type {?|undefined} */
51
- ITdPieSeries.prototype.seriesLayoutBy;
52
- /** @type {?|undefined} */
53
- ITdPieSeries.prototype.datasetIndex;
54
- /** @type {?|undefined} */
55
- ITdPieSeries.prototype.data;
56
- /** @type {?|undefined} */
57
- ITdPieSeries.prototype.markPoint;
58
- /** @type {?|undefined} */
59
- ITdPieSeries.prototype.markLine;
60
- /** @type {?|undefined} */
61
- ITdPieSeries.prototype.markArea;
62
- /** @type {?|undefined} */
63
- ITdPieSeries.prototype.Zlevel;
64
- /** @type {?|undefined} */
65
- ITdPieSeries.prototype.z;
66
- /** @type {?|undefined} */
67
- ITdPieSeries.prototype.center;
68
- /** @type {?|undefined} */
69
- ITdPieSeries.prototype.radius;
70
- /** @type {?|undefined} */
71
- ITdPieSeries.prototype.silent;
72
- }
73
- class TdChartSeriesPieComponent extends TdSeriesDirective {
74
- /**
75
- * @param {?} _optionsService
76
- */
77
- constructor(_optionsService) {
78
- super('pie', _optionsService);
79
- }
80
- /**
81
- * @return {?}
82
- */
83
- getConfig() {
84
- return {
85
- legendHoverLink: this.legendHoverLink,
86
- label: this.label,
87
- itemStyle: this.itemStyle,
88
- emphasis: this.emphasis,
89
- selectedMode: this.selectedMode,
90
- selectedOffset: this.selectedOffset,
91
- clockwise: this.clockwise,
92
- startAngle: this.startAngle,
93
- minAngle: this.minAngle,
94
- minShowLabelAngle: this.minShowLabelAngle,
95
- roseType: this.roseType,
96
- avoidLabelOverlap: this.avoidLabelOverlap,
97
- stillShowZeroSum: this.stillShowZeroSum,
98
- cursor: this.cursor,
99
- labelLine: this.labelLine,
100
- seriesLayoutBy: this.seriesLayoutBy,
101
- datasetIndex: this.datasetIndex,
102
- markPoint: this.markPoint,
103
- markLine: this.markLine,
104
- markArea: this.markArea,
105
- zlevel: this.zlevel,
106
- z: this.z,
107
- center: this.center,
108
- radius: this.radius,
109
- };
110
- }
111
- }
112
- TdChartSeriesPieComponent.decorators = [
113
- { type: Component, args: [{
114
- selector: 'td-chart-series[td-pie]',
115
- template: '',
116
- changeDetection: ChangeDetectionStrategy.OnPush,
117
- inputs: [
118
- 'config',
119
- 'id',
120
- 'name',
121
- 'color',
122
- 'data',
123
- 'animation',
124
- 'animationThreshold',
125
- 'animationDuration',
126
- 'animationEasing',
127
- 'animationDelay',
128
- 'animationDurationUpdate',
129
- 'animationEasingUpdate',
130
- 'animationDelayUpdate',
131
- 'tooltip',
132
- ],
133
- providers: [
134
- {
135
- provide: TdSeriesDirective,
136
- useExisting: forwardRef((/**
137
- * @return {?}
138
- */
139
- () => TdChartSeriesPieComponent)),
140
- },
141
- ]
142
- }] }
143
- ];
144
- /** @nocollapse */
145
- TdChartSeriesPieComponent.ctorParameters = () => [
146
- { type: TdChartOptionsService }
147
- ];
148
- TdChartSeriesPieComponent.propDecorators = {
149
- legendHoverLink: [{ type: Input }],
150
- hoverAnimation: [{ type: Input }],
151
- hoverOffset: [{ type: Input }],
152
- selectedMode: [{ type: Input }],
153
- selectedOffset: [{ type: Input }],
154
- clockwise: [{ type: Input }],
155
- startAngle: [{ type: Input }],
156
- minAngle: [{ type: Input }],
157
- minShowLabelAngle: [{ type: Input }],
158
- roseType: [{ type: Input }],
159
- avoidLabelOverlap: [{ type: Input }],
160
- stillShowZeroSum: [{ type: Input }],
161
- cursor: [{ type: Input }],
162
- labelLine: [{ type: Input }],
163
- label: [{ type: Input }],
164
- itemStyle: [{ type: Input }],
165
- emphasis: [{ type: Input }],
166
- seriesLayoutBy: [{ type: Input }],
167
- datasetIndex: [{ type: Input }],
168
- markPoint: [{ type: Input }],
169
- markLine: [{ type: Input }],
170
- markArea: [{ type: Input }],
171
- zlevel: [{ type: Input }],
172
- z: [{ type: Input }],
173
- center: [{ type: Input }],
174
- radius: [{ type: Input }]
175
- };
176
- if (false) {
177
- /** @type {?} */
178
- TdChartSeriesPieComponent.prototype.legendHoverLink;
179
- /** @type {?} */
180
- TdChartSeriesPieComponent.prototype.hoverAnimation;
181
- /** @type {?} */
182
- TdChartSeriesPieComponent.prototype.hoverOffset;
183
- /** @type {?} */
184
- TdChartSeriesPieComponent.prototype.selectedMode;
185
- /** @type {?} */
186
- TdChartSeriesPieComponent.prototype.selectedOffset;
187
- /** @type {?} */
188
- TdChartSeriesPieComponent.prototype.clockwise;
189
- /** @type {?} */
190
- TdChartSeriesPieComponent.prototype.startAngle;
191
- /** @type {?} */
192
- TdChartSeriesPieComponent.prototype.minAngle;
193
- /** @type {?} */
194
- TdChartSeriesPieComponent.prototype.minShowLabelAngle;
195
- /** @type {?} */
196
- TdChartSeriesPieComponent.prototype.roseType;
197
- /** @type {?} */
198
- TdChartSeriesPieComponent.prototype.avoidLabelOverlap;
199
- /** @type {?} */
200
- TdChartSeriesPieComponent.prototype.stillShowZeroSum;
201
- /** @type {?} */
202
- TdChartSeriesPieComponent.prototype.cursor;
203
- /** @type {?} */
204
- TdChartSeriesPieComponent.prototype.labelLine;
205
- /** @type {?} */
206
- TdChartSeriesPieComponent.prototype.label;
207
- /** @type {?} */
208
- TdChartSeriesPieComponent.prototype.itemStyle;
209
- /** @type {?} */
210
- TdChartSeriesPieComponent.prototype.emphasis;
211
- /** @type {?} */
212
- TdChartSeriesPieComponent.prototype.seriesLayoutBy;
213
- /** @type {?} */
214
- TdChartSeriesPieComponent.prototype.datasetIndex;
215
- /** @type {?} */
216
- TdChartSeriesPieComponent.prototype.markPoint;
217
- /** @type {?} */
218
- TdChartSeriesPieComponent.prototype.markLine;
219
- /** @type {?} */
220
- TdChartSeriesPieComponent.prototype.markArea;
221
- /** @type {?} */
222
- TdChartSeriesPieComponent.prototype.zlevel;
223
- /** @type {?} */
224
- TdChartSeriesPieComponent.prototype.z;
225
- /** @type {?} */
226
- TdChartSeriesPieComponent.prototype.center;
227
- /** @type {?} */
228
- TdChartSeriesPieComponent.prototype.radius;
229
- }
230
-
231
- /**
232
- * @fileoverview added by tsickle
233
- * Generated from: pie.module.ts
234
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
235
- */
236
- /** @type {?} */
237
- const PIE_MODULE_COMPONENTS = [TdChartSeriesPieComponent];
238
- class CovalentPieEchartsModule {
239
- }
240
- CovalentPieEchartsModule.decorators = [
241
- { type: NgModule, args: [{
242
- imports: [CommonModule],
243
- declarations: [PIE_MODULE_COMPONENTS],
244
- exports: [PIE_MODULE_COMPONENTS],
245
- },] }
246
- ];
247
-
248
- /**
249
- * @fileoverview added by tsickle
250
- * Generated from: public-api.ts
251
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
252
- */
253
-
254
- /**
255
- * @fileoverview added by tsickle
256
- * Generated from: index.ts
257
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
258
- */
259
-
260
- /**
261
- * @fileoverview added by tsickle
262
- * Generated from: covalent-echarts-pie.ts
263
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
264
- */
265
-
266
- export { CovalentPieEchartsModule, PIE_MODULE_COMPONENTS, TdChartSeriesPieComponent };
267
- //# sourceMappingURL=covalent-echarts-pie.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"covalent-echarts-pie.js","sources":["../../../../src/platform/echarts/pie/pie.component.ts","../../../../src/platform/echarts/pie/pie.module.ts"],"sourcesContent":["import { Component, Input, ChangeDetectionStrategy, forwardRef } from '@angular/core';\n\nimport {\n TdChartOptionsService,\n ITdItemStyle,\n ITdEmphasis,\n TdSeriesLayoutBy,\n ITdMarkPoint,\n ITdMarkLine,\n ITdMarkArea,\n ITdSeries,\n ITdLabel,\n ITdLabelLine,\n TdSeriesDirective,\n} from '@covalent/echarts/base';\n\nexport interface ITdPieSeries extends ITdSeries {\n legendHoverLink?: boolean;\n hoverAnimation?: boolean;\n hoverOffset?: number;\n selectedMode?: boolean | string;\n selectedOffset?: number;\n clockwise?: boolean;\n startAngle?: number;\n minAngle?: number;\n minShowLabelAngle?: number;\n roseType?: boolean | string;\n avoidLabelOverlap?: boolean;\n stillShowZeroSum?: boolean;\n cursor?: string;\n labelLine?: ITdLabelLine;\n Label?: ITdLabel;\n itemStyle?: ITdItemStyle;\n emphasis?: ITdEmphasis;\n seriesLayoutBy?: TdSeriesLayoutBy;\n datasetIndex?: number;\n data?: any[];\n markPoint?: ITdMarkPoint;\n markLine?: ITdMarkLine;\n markArea?: ITdMarkArea;\n Zlevel?: 0;\n z?: number;\n center?: object;\n radius?: number | string | any[];\n silent?: boolean;\n}\n\n@Component({\n selector: 'td-chart-series[td-pie]',\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(() => TdChartSeriesPieComponent),\n },\n ],\n})\nexport class TdChartSeriesPieComponent extends TdSeriesDirective implements ITdPieSeries {\n @Input() legendHoverLink: boolean;\n @Input() hoverAnimation: boolean;\n @Input() hoverOffset: number;\n @Input() selectedMode: boolean | string;\n @Input() selectedOffset: number;\n @Input() clockwise: boolean;\n @Input() startAngle: number;\n @Input() minAngle: number;\n @Input() minShowLabelAngle: number;\n @Input() roseType: boolean | string;\n @Input() avoidLabelOverlap: boolean;\n @Input() stillShowZeroSum: boolean;\n @Input() cursor: string;\n @Input() labelLine: object;\n @Input() label: any;\n @Input() itemStyle: ITdItemStyle;\n @Input() emphasis: ITdEmphasis;\n @Input() seriesLayoutBy: TdSeriesLayoutBy;\n @Input() datasetIndex: number;\n @Input() markPoint: ITdMarkPoint;\n @Input() markLine: ITdMarkLine;\n @Input() markArea: ITdMarkArea;\n @Input() zlevel: number;\n @Input() z: number;\n @Input() center: object;\n @Input() radius: number | string | any[];\n\n constructor(_optionsService: TdChartOptionsService) {\n super('pie', _optionsService);\n }\n\n getConfig(): any {\n return {\n legendHoverLink: this.legendHoverLink,\n label: this.label,\n itemStyle: this.itemStyle,\n emphasis: this.emphasis,\n selectedMode: this.selectedMode,\n selectedOffset: this.selectedOffset,\n clockwise: this.clockwise,\n startAngle: this.startAngle,\n minAngle: this.minAngle,\n minShowLabelAngle: this.minShowLabelAngle,\n roseType: this.roseType,\n avoidLabelOverlap: this.avoidLabelOverlap,\n stillShowZeroSum: this.stillShowZeroSum,\n cursor: this.cursor,\n labelLine: this.labelLine,\n seriesLayoutBy: this.seriesLayoutBy,\n datasetIndex: this.datasetIndex,\n markPoint: this.markPoint,\n markLine: this.markLine,\n markArea: this.markArea,\n zlevel: this.zlevel,\n z: this.z,\n center: this.center,\n radius: this.radius,\n };\n }\n}\n","import { NgModule, Type } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport 'echarts/lib/chart/pie';\n\nimport { TdChartSeriesPieComponent } from './pie.component';\n\nexport const PIE_MODULE_COMPONENTS: Type<any>[] = [TdChartSeriesPieComponent];\n\n@NgModule({\n imports: [CommonModule],\n declarations: [PIE_MODULE_COMPONENTS],\n exports: [PIE_MODULE_COMPONENTS],\n})\nexport class CovalentPieEchartsModule {}\n"],"names":[],"mappings":"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"}
@@ -1,263 +0,0 @@
1
- import { Component, ChangeDetectionStrategy, forwardRef, Input, NgModule } from '@angular/core';
2
- import { CommonModule } from '@angular/common';
3
- import 'echarts/lib/chart/sankey';
4
- import { TdSeriesDirective, TdChartOptionsService } from '@covalent/echarts/base';
5
-
6
- /**
7
- * @fileoverview added by tsickle
8
- * Generated from: sankey.component.ts
9
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
10
- */
11
- /**
12
- * @record
13
- */
14
- function ITdSankeyEmphasisLineStyle() { }
15
- if (false) {
16
- /** @type {?|undefined} */
17
- ITdSankeyEmphasisLineStyle.prototype.color;
18
- /** @type {?|undefined} */
19
- ITdSankeyEmphasisLineStyle.prototype.opacity;
20
- /** @type {?|undefined} */
21
- ITdSankeyEmphasisLineStyle.prototype.curveness;
22
- }
23
- /**
24
- * @record
25
- */
26
- function ITdSankeyEmphasis() { }
27
- if (false) {
28
- /** @type {?} */
29
- ITdSankeyEmphasis.prototype.lineStyle;
30
- }
31
- /**
32
- * @record
33
- */
34
- function ITdSankeySeries() { }
35
- if (false) {
36
- /** @type {?|undefined} */
37
- ITdSankeySeries.prototype.zlevel;
38
- /** @type {?|undefined} */
39
- ITdSankeySeries.prototype.z;
40
- /** @type {?|undefined} */
41
- ITdSankeySeries.prototype.left;
42
- /** @type {?|undefined} */
43
- ITdSankeySeries.prototype.top;
44
- /** @type {?|undefined} */
45
- ITdSankeySeries.prototype.right;
46
- /** @type {?|undefined} */
47
- ITdSankeySeries.prototype.bottom;
48
- /** @type {?|undefined} */
49
- ITdSankeySeries.prototype.width;
50
- /** @type {?|undefined} */
51
- ITdSankeySeries.prototype.height;
52
- /** @type {?|undefined} */
53
- ITdSankeySeries.prototype.nodeWidth;
54
- /** @type {?|undefined} */
55
- ITdSankeySeries.prototype.nodeGap;
56
- /** @type {?|undefined} */
57
- ITdSankeySeries.prototype.layoutIterations;
58
- /** @type {?|undefined} */
59
- ITdSankeySeries.prototype.orient;
60
- /** @type {?|undefined} */
61
- ITdSankeySeries.prototype.draggable;
62
- /** @type {?|undefined} */
63
- ITdSankeySeries.prototype.focusNodeAdjacency;
64
- /** @type {?|undefined} */
65
- ITdSankeySeries.prototype.label;
66
- /** @type {?|undefined} */
67
- ITdSankeySeries.prototype.itemStyle;
68
- /** @type {?|undefined} */
69
- ITdSankeySeries.prototype.lineStyle;
70
- /** @type {?|undefined} */
71
- ITdSankeySeries.prototype.emphasis;
72
- /** @type {?|undefined} */
73
- ITdSankeySeries.prototype.data;
74
- /** @type {?|undefined} */
75
- ITdSankeySeries.prototype.nodes;
76
- /** @type {?|undefined} */
77
- ITdSankeySeries.prototype.links;
78
- /** @type {?|undefined} */
79
- ITdSankeySeries.prototype.edges;
80
- /** @type {?|undefined} */
81
- ITdSankeySeries.prototype.silent;
82
- }
83
- class TdChartSeriesSankeyComponent extends TdSeriesDirective {
84
- /**
85
- * @param {?} _optionsService
86
- */
87
- constructor(_optionsService) {
88
- super('sankey', _optionsService);
89
- }
90
- /**
91
- * @return {?}
92
- */
93
- getConfig() {
94
- return {
95
- zlevel: this.zlevel,
96
- z: this.z,
97
- left: this.left,
98
- top: this.top,
99
- right: this.right,
100
- bottom: this.bottom,
101
- width: this.width,
102
- height: this.height,
103
- nodeWidth: this.nodeWidth,
104
- nodeGap: this.nodeGap,
105
- layoutIterations: this.layoutIterations,
106
- orient: this.orient,
107
- draggable: this.draggable,
108
- focusNodeAdjacency: this.focusNodeAdjacency,
109
- label: this.label,
110
- itemStyle: this.itemStyle,
111
- lineStyle: this.lineStyle,
112
- emphasis: this.emphasis,
113
- nodes: this.nodes,
114
- links: this.links,
115
- edges: this.edges,
116
- silent: this.silent,
117
- };
118
- }
119
- }
120
- TdChartSeriesSankeyComponent.decorators = [
121
- { type: Component, args: [{
122
- selector: 'td-chart-series[td-sankey]',
123
- template: '',
124
- changeDetection: ChangeDetectionStrategy.OnPush,
125
- inputs: [
126
- 'config',
127
- 'id',
128
- 'name',
129
- 'color',
130
- 'data',
131
- 'animation',
132
- 'animationThreshold',
133
- 'animationDuration',
134
- 'animationEasing',
135
- 'animationDelay',
136
- 'animationDurationUpdate',
137
- 'animationEasingUpdate',
138
- 'animationDelayUpdate',
139
- 'tooltip',
140
- ],
141
- providers: [
142
- {
143
- provide: TdSeriesDirective,
144
- useExisting: forwardRef((/**
145
- * @return {?}
146
- */
147
- () => TdChartSeriesSankeyComponent)),
148
- },
149
- ]
150
- }] }
151
- ];
152
- /** @nocollapse */
153
- TdChartSeriesSankeyComponent.ctorParameters = () => [
154
- { type: TdChartOptionsService }
155
- ];
156
- TdChartSeriesSankeyComponent.propDecorators = {
157
- zlevel: [{ type: Input }],
158
- z: [{ type: Input }],
159
- left: [{ type: Input }],
160
- top: [{ type: Input }],
161
- right: [{ type: Input }],
162
- bottom: [{ type: Input }],
163
- width: [{ type: Input }],
164
- height: [{ type: Input }],
165
- nodeWidth: [{ type: Input }],
166
- nodeGap: [{ type: Input }],
167
- layoutIterations: [{ type: Input }],
168
- orient: [{ type: Input }],
169
- draggable: [{ type: Input }],
170
- focusNodeAdjacency: [{ type: Input }],
171
- label: [{ type: Input }],
172
- itemStyle: [{ type: Input }],
173
- lineStyle: [{ type: Input }],
174
- emphasis: [{ type: Input }],
175
- nodes: [{ type: Input }],
176
- links: [{ type: Input }],
177
- edges: [{ type: Input }],
178
- silent: [{ type: Input }]
179
- };
180
- if (false) {
181
- /** @type {?} */
182
- TdChartSeriesSankeyComponent.prototype.zlevel;
183
- /** @type {?} */
184
- TdChartSeriesSankeyComponent.prototype.z;
185
- /** @type {?} */
186
- TdChartSeriesSankeyComponent.prototype.left;
187
- /** @type {?} */
188
- TdChartSeriesSankeyComponent.prototype.top;
189
- /** @type {?} */
190
- TdChartSeriesSankeyComponent.prototype.right;
191
- /** @type {?} */
192
- TdChartSeriesSankeyComponent.prototype.bottom;
193
- /** @type {?} */
194
- TdChartSeriesSankeyComponent.prototype.width;
195
- /** @type {?} */
196
- TdChartSeriesSankeyComponent.prototype.height;
197
- /** @type {?} */
198
- TdChartSeriesSankeyComponent.prototype.nodeWidth;
199
- /** @type {?} */
200
- TdChartSeriesSankeyComponent.prototype.nodeGap;
201
- /** @type {?} */
202
- TdChartSeriesSankeyComponent.prototype.layoutIterations;
203
- /** @type {?} */
204
- TdChartSeriesSankeyComponent.prototype.orient;
205
- /** @type {?} */
206
- TdChartSeriesSankeyComponent.prototype.draggable;
207
- /** @type {?} */
208
- TdChartSeriesSankeyComponent.prototype.focusNodeAdjacency;
209
- /** @type {?} */
210
- TdChartSeriesSankeyComponent.prototype.label;
211
- /** @type {?} */
212
- TdChartSeriesSankeyComponent.prototype.itemStyle;
213
- /** @type {?} */
214
- TdChartSeriesSankeyComponent.prototype.lineStyle;
215
- /** @type {?} */
216
- TdChartSeriesSankeyComponent.prototype.emphasis;
217
- /** @type {?} */
218
- TdChartSeriesSankeyComponent.prototype.nodes;
219
- /** @type {?} */
220
- TdChartSeriesSankeyComponent.prototype.links;
221
- /** @type {?} */
222
- TdChartSeriesSankeyComponent.prototype.edges;
223
- /** @type {?} */
224
- TdChartSeriesSankeyComponent.prototype.silent;
225
- }
226
-
227
- /**
228
- * @fileoverview added by tsickle
229
- * Generated from: sankey.module.ts
230
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
231
- */
232
- /** @type {?} */
233
- const SANKEY_MODULE_COMPONENTS = [TdChartSeriesSankeyComponent];
234
- class CovalentSankeyEchartsModule {
235
- }
236
- CovalentSankeyEchartsModule.decorators = [
237
- { type: NgModule, args: [{
238
- imports: [CommonModule],
239
- declarations: [SANKEY_MODULE_COMPONENTS],
240
- exports: [SANKEY_MODULE_COMPONENTS],
241
- },] }
242
- ];
243
-
244
- /**
245
- * @fileoverview added by tsickle
246
- * Generated from: public-api.ts
247
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
248
- */
249
-
250
- /**
251
- * @fileoverview added by tsickle
252
- * Generated from: index.ts
253
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
254
- */
255
-
256
- /**
257
- * @fileoverview added by tsickle
258
- * Generated from: covalent-echarts-sankey.ts
259
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
260
- */
261
-
262
- export { CovalentSankeyEchartsModule, SANKEY_MODULE_COMPONENTS, TdChartSeriesSankeyComponent };
263
- //# sourceMappingURL=covalent-echarts-sankey.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"covalent-echarts-sankey.js","sources":["../../../../src/platform/echarts/sankey/sankey.component.ts","../../../../src/platform/echarts/sankey/sankey.module.ts"],"sourcesContent":["import { Component, Input, ChangeDetectionStrategy, forwardRef } from '@angular/core';\n\nimport {\n TdChartOptionsService,\n ITdLabel,\n ITdItemStyle,\n ITdEmphasis,\n ITdSeries,\n TdSeriesDirective,\n ITdShadow,\n ITdLineCurveStyle,\n} from '@covalent/echarts/base';\n\nexport type TdSankeyOrient = 'horizontal' | 'vertical';\n\nexport type TdSankeyFocusNodeAdjacency = boolean | 'allEdges' | 'outEdges' | 'inEdges';\n\nexport interface ITdSankeyEmphasisLineStyle extends ITdShadow {\n color?: any;\n opacity?: number;\n curveness?: number;\n}\n\nexport interface ITdSankeyEmphasis extends ITdEmphasis {\n lineStyle: ITdSankeyEmphasisLineStyle;\n}\n\nexport interface ITdSankeySeries 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 nodeWidth?: number;\n nodeGap?: number;\n layoutIterations?: number;\n orient?: TdSankeyOrient;\n draggable?: boolean;\n focusNodeAdjacency?: TdSankeyFocusNodeAdjacency;\n label?: ITdLabel;\n itemStyle?: ITdItemStyle;\n lineStyle?: ITdLineCurveStyle;\n emphasis?: ITdEmphasis;\n data?: any[];\n nodes?: any[];\n links?: any[];\n edges?: any[];\n silent?: boolean;\n}\n\n@Component({\n selector: 'td-chart-series[td-sankey]',\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(() => TdChartSeriesSankeyComponent),\n },\n ],\n})\nexport class TdChartSeriesSankeyComponent extends TdSeriesDirective implements ITdSankeySeries {\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() nodeWidth: number;\n @Input() nodeGap: number;\n @Input() layoutIterations: number;\n @Input() orient: TdSankeyOrient;\n @Input() draggable: boolean;\n @Input() focusNodeAdjacency: TdSankeyFocusNodeAdjacency;\n @Input() label: ITdLabel;\n @Input() itemStyle: ITdItemStyle;\n @Input() lineStyle: ITdLineCurveStyle;\n @Input() emphasis: ITdEmphasis;\n @Input() nodes: any[];\n @Input() links: any[];\n @Input() edges: any[];\n @Input() silent: boolean;\n\n constructor(_optionsService: TdChartOptionsService) {\n super('sankey', _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 nodeWidth: this.nodeWidth,\n nodeGap: this.nodeGap,\n layoutIterations: this.layoutIterations,\n orient: this.orient,\n draggable: this.draggable,\n focusNodeAdjacency: this.focusNodeAdjacency,\n label: this.label,\n itemStyle: this.itemStyle,\n lineStyle: this.lineStyle,\n emphasis: this.emphasis,\n nodes: this.nodes,\n links: this.links,\n edges: this.edges,\n silent: this.silent,\n };\n }\n}\n","import { NgModule, Type } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport 'echarts/lib/chart/sankey';\n\nimport { TdChartSeriesSankeyComponent } from './sankey.component';\n\nexport const SANKEY_MODULE_COMPONENTS: Type<any>[] = [TdChartSeriesSankeyComponent];\n\n@NgModule({\n imports: [CommonModule],\n declarations: [SANKEY_MODULE_COMPONENTS],\n exports: [SANKEY_MODULE_COMPONENTS],\n})\nexport class CovalentSankeyEchartsModule {}\n"],"names":[],"mappings":"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"}