@covalent/echarts 4.0.0-alpha.0 → 4.0.0-beta.4

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 (386) hide show
  1. package/bar/bar.component.d.ts +3 -0
  2. package/bar/bar.module.d.ts +6 -1
  3. package/bar/covalent-echarts-bar.d.ts +1 -0
  4. package/bar/package.json +6 -7
  5. package/base/axis/axis.component.d.ts +3 -0
  6. package/base/axis/x-axis.component.d.ts +3 -0
  7. package/base/axis/y-axis.component.d.ts +3 -0
  8. package/base/base.module.d.ts +9 -1
  9. package/base/chart-options.service.d.ts +3 -0
  10. package/base/chart.component.d.ts +3 -0
  11. package/base/covalent-echarts-base.d.ts +1 -1
  12. package/base/dataset/dataset.component.d.ts +3 -0
  13. package/base/package.json +6 -7
  14. package/base/series/series.component.d.ts +3 -0
  15. package/covalent-echarts.d.ts +1 -0
  16. package/esm2020/bar/bar.component.mjs +136 -0
  17. package/esm2020/bar/bar.module.mjs +20 -0
  18. package/esm2020/bar/covalent-echarts-bar.mjs +5 -0
  19. package/esm2020/bar/index.mjs +2 -0
  20. package/esm2020/bar/public-api.mjs +3 -0
  21. package/esm2020/base/axis/axis.component.mjs +127 -0
  22. package/esm2020/base/axis/axis.interface.mjs +2 -0
  23. package/esm2020/base/axis/x-axis.component.mjs +55 -0
  24. package/esm2020/base/axis/y-axis.component.mjs +55 -0
  25. package/esm2020/base/base.module.mjs +36 -0
  26. package/esm2020/base/base.types.mjs +2 -0
  27. package/esm2020/base/chart-options.service.mjs +65 -0
  28. package/esm2020/base/chart.component.mjs +191 -0
  29. package/esm2020/base/covalent-echarts-base.mjs +5 -0
  30. package/esm2020/base/dataset/dataset.component.mjs +52 -0
  31. package/esm2020/base/index.mjs +2 -0
  32. package/esm2020/base/public-api.mjs +10 -0
  33. package/esm2020/base/series/series.component.mjs +91 -0
  34. package/esm2020/base/series/series.interface.mjs +2 -0
  35. package/{esm2015/base/themes/teradata-classic.js → esm2020/base/themes/aqua-splash.mjs} +10 -15
  36. package/esm2020/base/themes/california-coast.mjs +460 -0
  37. package/esm2020/base/themes/hawaiian-sunrise.mjs +460 -0
  38. package/{esm2015/base/themes/volcanic-eruption.js → esm2020/base/themes/passion-flower.mjs} +18 -23
  39. package/esm2020/base/themes/razzleberry-pie.mjs +460 -0
  40. package/esm2020/base/themes/teradata-classic.mjs +460 -0
  41. package/{esm2015/base/themes/hawaiian-sunrise.js → esm2020/base/themes/teradata-default.mjs} +18 -23
  42. package/esm2020/base/themes/urban-sunrise.mjs +460 -0
  43. package/esm2020/base/themes/volcanic-eruption.mjs +460 -0
  44. package/esm2020/base/utils/assign-defined.mjs +25 -0
  45. package/esm2020/base/utils/echarts.mjs +49 -0
  46. package/esm2020/base/utils/index.mjs +3 -0
  47. package/esm2020/covalent-echarts.mjs +5 -0
  48. package/esm2020/graph/covalent-echarts-graph.mjs +5 -0
  49. package/esm2020/graph/graph.component.mjs +186 -0
  50. package/esm2020/graph/graph.module.mjs +20 -0
  51. package/esm2020/graph/index.mjs +2 -0
  52. package/esm2020/graph/public-api.mjs +3 -0
  53. package/esm2020/index.mjs +2 -0
  54. package/esm2020/line/covalent-echarts-line.mjs +5 -0
  55. package/esm2020/line/index.mjs +2 -0
  56. package/esm2020/line/line.component.mjs +160 -0
  57. package/esm2020/line/line.module.mjs +20 -0
  58. package/esm2020/line/public-api.mjs +3 -0
  59. package/esm2020/map/covalent-echarts-map.mjs +5 -0
  60. package/esm2020/map/index.mjs +2 -0
  61. package/esm2020/map/map.component.mjs +133 -0
  62. package/esm2020/map/map.module.mjs +20 -0
  63. package/esm2020/map/public-api.mjs +3 -0
  64. package/esm2020/pie/covalent-echarts-pie.mjs +5 -0
  65. package/esm2020/pie/index.mjs +2 -0
  66. package/esm2020/pie/pie.component.mjs +128 -0
  67. package/esm2020/pie/pie.module.mjs +20 -0
  68. package/esm2020/pie/public-api.mjs +3 -0
  69. package/esm2020/sankey/covalent-echarts-sankey.mjs +5 -0
  70. package/esm2020/sankey/index.mjs +2 -0
  71. package/esm2020/sankey/public-api.mjs +3 -0
  72. package/esm2020/sankey/sankey.component.mjs +118 -0
  73. package/esm2020/sankey/sankey.module.mjs +20 -0
  74. package/esm2020/scatter/covalent-echarts-scatter.mjs +5 -0
  75. package/esm2020/scatter/index.mjs +2 -0
  76. package/esm2020/scatter/public-api.mjs +3 -0
  77. package/esm2020/scatter/scatter.component.mjs +145 -0
  78. package/esm2020/scatter/scatter.module.mjs +20 -0
  79. package/esm2020/toolbox/covalent-echarts-toolbox.mjs +5 -0
  80. package/esm2020/toolbox/index.mjs +2 -0
  81. package/esm2020/toolbox/public-api.mjs +3 -0
  82. package/esm2020/toolbox/toolbox.component.mjs +151 -0
  83. package/esm2020/toolbox/toolbox.module.mjs +20 -0
  84. package/esm2020/tooltip/covalent-echarts-tooltip.mjs +5 -0
  85. package/esm2020/tooltip/index.mjs +2 -0
  86. package/esm2020/tooltip/public-api.mjs +4 -0
  87. package/esm2020/tooltip/series-tooltip.component.mjs +111 -0
  88. package/esm2020/tooltip/tooltip.component.mjs +165 -0
  89. package/esm2020/tooltip/tooltip.module.mjs +29 -0
  90. package/esm2020/tree/covalent-echarts-tree.mjs +5 -0
  91. package/esm2020/tree/index.mjs +2 -0
  92. package/esm2020/tree/public-api.mjs +3 -0
  93. package/esm2020/tree/tree.component.mjs +118 -0
  94. package/esm2020/tree/tree.module.mjs +20 -0
  95. package/esm2020/treemap/covalent-echarts-treemap.mjs +5 -0
  96. package/esm2020/treemap/index.mjs +2 -0
  97. package/esm2020/treemap/public-api.mjs +3 -0
  98. package/esm2020/treemap/treemap.component.mjs +150 -0
  99. package/esm2020/treemap/treemap.module.mjs +20 -0
  100. package/esm2020/wordcloud/covalent-echarts-wordcloud.mjs +5 -0
  101. package/esm2020/wordcloud/index.mjs +2 -0
  102. package/esm2020/wordcloud/public-api.mjs +3 -0
  103. package/esm2020/wordcloud/wordcloud.component.mjs +93 -0
  104. package/esm2020/wordcloud/wordcloud.module.mjs +20 -0
  105. package/fesm2015/covalent-echarts-bar.mjs +164 -0
  106. package/fesm2015/covalent-echarts-bar.mjs.map +1 -0
  107. package/fesm2015/covalent-echarts-base.mjs +4864 -0
  108. package/fesm2015/covalent-echarts-base.mjs.map +1 -0
  109. package/fesm2015/covalent-echarts-graph.mjs +214 -0
  110. package/fesm2015/covalent-echarts-graph.mjs.map +1 -0
  111. package/fesm2015/covalent-echarts-line.mjs +188 -0
  112. package/fesm2015/covalent-echarts-line.mjs.map +1 -0
  113. package/fesm2015/covalent-echarts-map.mjs +161 -0
  114. package/fesm2015/{covalent-echarts-map.js.map → covalent-echarts-map.mjs.map} +1 -1
  115. package/fesm2015/covalent-echarts-pie.mjs +156 -0
  116. package/fesm2015/{covalent-echarts-pie.js.map → covalent-echarts-pie.mjs.map} +1 -1
  117. package/fesm2015/covalent-echarts-sankey.mjs +146 -0
  118. package/fesm2015/covalent-echarts-sankey.mjs.map +1 -0
  119. package/fesm2015/covalent-echarts-scatter.mjs +173 -0
  120. package/fesm2015/covalent-echarts-scatter.mjs.map +1 -0
  121. package/fesm2015/covalent-echarts-toolbox.mjs +184 -0
  122. package/fesm2015/covalent-echarts-toolbox.mjs.map +1 -0
  123. package/fesm2015/covalent-echarts-tooltip.mjs +330 -0
  124. package/fesm2015/covalent-echarts-tooltip.mjs.map +1 -0
  125. package/fesm2015/covalent-echarts-tree.mjs +146 -0
  126. package/fesm2015/covalent-echarts-tree.mjs.map +1 -0
  127. package/fesm2015/covalent-echarts-treemap.mjs +178 -0
  128. package/fesm2015/covalent-echarts-treemap.mjs.map +1 -0
  129. package/fesm2015/covalent-echarts-wordcloud.mjs +121 -0
  130. package/fesm2015/covalent-echarts-wordcloud.mjs.map +1 -0
  131. package/fesm2015/covalent-echarts.mjs +4 -0
  132. package/fesm2015/covalent-echarts.mjs.map +1 -0
  133. package/fesm2020/covalent-echarts-bar.mjs +160 -0
  134. package/{fesm2015/covalent-echarts-bar.js.map → fesm2020/covalent-echarts-bar.mjs.map} +1 -1
  135. package/{fesm2015/covalent-echarts-base.js → fesm2020/covalent-echarts-base.mjs} +218 -769
  136. package/fesm2020/covalent-echarts-base.mjs.map +1 -0
  137. package/fesm2020/covalent-echarts-graph.mjs +210 -0
  138. package/fesm2020/covalent-echarts-graph.mjs.map +1 -0
  139. package/fesm2020/covalent-echarts-line.mjs +184 -0
  140. package/fesm2020/covalent-echarts-line.mjs.map +1 -0
  141. package/fesm2020/covalent-echarts-map.mjs +157 -0
  142. package/fesm2020/covalent-echarts-map.mjs.map +1 -0
  143. package/fesm2020/covalent-echarts-pie.mjs +152 -0
  144. package/fesm2020/covalent-echarts-pie.mjs.map +1 -0
  145. package/fesm2020/covalent-echarts-sankey.mjs +142 -0
  146. package/fesm2020/covalent-echarts-sankey.mjs.map +1 -0
  147. package/fesm2020/covalent-echarts-scatter.mjs +169 -0
  148. package/fesm2020/covalent-echarts-scatter.mjs.map +1 -0
  149. package/fesm2020/covalent-echarts-toolbox.mjs +175 -0
  150. package/fesm2020/covalent-echarts-toolbox.mjs.map +1 -0
  151. package/fesm2020/covalent-echarts-tooltip.mjs +302 -0
  152. package/fesm2020/covalent-echarts-tooltip.mjs.map +1 -0
  153. package/fesm2020/covalent-echarts-tree.mjs +142 -0
  154. package/fesm2020/covalent-echarts-tree.mjs.map +1 -0
  155. package/fesm2020/covalent-echarts-treemap.mjs +174 -0
  156. package/fesm2020/covalent-echarts-treemap.mjs.map +1 -0
  157. package/fesm2020/covalent-echarts-wordcloud.mjs +117 -0
  158. package/fesm2020/covalent-echarts-wordcloud.mjs.map +1 -0
  159. package/fesm2020/covalent-echarts.mjs +4 -0
  160. package/fesm2020/covalent-echarts.mjs.map +1 -0
  161. package/graph/covalent-echarts-graph.d.ts +1 -0
  162. package/graph/graph.component.d.ts +3 -0
  163. package/graph/graph.module.d.ts +6 -1
  164. package/graph/package.json +6 -7
  165. package/line/covalent-echarts-line.d.ts +1 -0
  166. package/line/line.component.d.ts +3 -0
  167. package/line/line.module.d.ts +6 -1
  168. package/line/package.json +6 -7
  169. package/map/covalent-echarts-map.d.ts +1 -0
  170. package/map/map.component.d.ts +3 -0
  171. package/map/map.module.d.ts +6 -1
  172. package/map/package.json +6 -7
  173. package/package.json +134 -15
  174. package/pie/covalent-echarts-pie.d.ts +1 -0
  175. package/pie/package.json +6 -7
  176. package/pie/pie.component.d.ts +3 -0
  177. package/pie/pie.module.d.ts +6 -1
  178. package/sankey/covalent-echarts-sankey.d.ts +1 -0
  179. package/sankey/package.json +6 -7
  180. package/sankey/sankey.component.d.ts +3 -0
  181. package/sankey/sankey.module.d.ts +6 -1
  182. package/scatter/covalent-echarts-scatter.d.ts +1 -0
  183. package/scatter/package.json +6 -7
  184. package/scatter/scatter.component.d.ts +3 -0
  185. package/scatter/scatter.module.d.ts +6 -1
  186. package/toolbox/covalent-echarts-toolbox.d.ts +1 -0
  187. package/toolbox/package.json +6 -7
  188. package/toolbox/toolbox.component.d.ts +5 -0
  189. package/toolbox/toolbox.module.d.ts +6 -1
  190. package/tooltip/covalent-echarts-tooltip.d.ts +1 -0
  191. package/tooltip/package.json +6 -7
  192. package/tooltip/series-tooltip.component.d.ts +3 -0
  193. package/tooltip/tooltip.component.d.ts +5 -0
  194. package/tooltip/tooltip.module.d.ts +7 -1
  195. package/tree/covalent-echarts-tree.d.ts +1 -0
  196. package/tree/package.json +6 -7
  197. package/tree/tree.component.d.ts +3 -0
  198. package/tree/tree.module.d.ts +6 -1
  199. package/treemap/covalent-echarts-treemap.d.ts +1 -0
  200. package/treemap/package.json +6 -7
  201. package/treemap/treemap.component.d.ts +3 -0
  202. package/treemap/treemap.module.d.ts +6 -1
  203. package/wordcloud/covalent-echarts-wordcloud.d.ts +1 -0
  204. package/wordcloud/package.json +6 -7
  205. package/wordcloud/wordcloud.component.d.ts +3 -0
  206. package/wordcloud/wordcloud.module.d.ts +6 -1
  207. package/bar/covalent-echarts-bar.metadata.json +0 -1
  208. package/base/covalent-echarts-base.metadata.json +0 -1
  209. package/bundles/covalent-echarts-bar.umd.js +0 -588
  210. package/bundles/covalent-echarts-bar.umd.js.map +0 -1
  211. package/bundles/covalent-echarts-bar.umd.min.js +0 -16
  212. package/bundles/covalent-echarts-bar.umd.min.js.map +0 -1
  213. package/bundles/covalent-echarts-base.umd.js +0 -5750
  214. package/bundles/covalent-echarts-base.umd.js.map +0 -1
  215. package/bundles/covalent-echarts-base.umd.min.js +0 -16
  216. package/bundles/covalent-echarts-base.umd.min.js.map +0 -1
  217. package/bundles/covalent-echarts-graph.umd.js +0 -745
  218. package/bundles/covalent-echarts-graph.umd.js.map +0 -1
  219. package/bundles/covalent-echarts-graph.umd.min.js +0 -16
  220. package/bundles/covalent-echarts-graph.umd.min.js.map +0 -1
  221. package/bundles/covalent-echarts-line.umd.js +0 -638
  222. package/bundles/covalent-echarts-line.umd.js.map +0 -1
  223. package/bundles/covalent-echarts-line.umd.min.js +0 -16
  224. package/bundles/covalent-echarts-line.umd.min.js.map +0 -1
  225. package/bundles/covalent-echarts-map.umd.js +0 -600
  226. package/bundles/covalent-echarts-map.umd.js.map +0 -1
  227. package/bundles/covalent-echarts-map.umd.min.js +0 -16
  228. package/bundles/covalent-echarts-map.umd.min.js.map +0 -1
  229. package/bundles/covalent-echarts-pie.umd.js +0 -574
  230. package/bundles/covalent-echarts-pie.umd.js.map +0 -1
  231. package/bundles/covalent-echarts-pie.umd.min.js +0 -16
  232. package/bundles/covalent-echarts-pie.umd.min.js.map +0 -1
  233. package/bundles/covalent-echarts-sankey.umd.js +0 -570
  234. package/bundles/covalent-echarts-sankey.umd.js.map +0 -1
  235. package/bundles/covalent-echarts-sankey.umd.min.js +0 -16
  236. package/bundles/covalent-echarts-sankey.umd.min.js.map +0 -1
  237. package/bundles/covalent-echarts-scatter.umd.js +0 -610
  238. package/bundles/covalent-echarts-scatter.umd.js.map +0 -1
  239. package/bundles/covalent-echarts-scatter.umd.min.js +0 -16
  240. package/bundles/covalent-echarts-scatter.umd.min.js.map +0 -1
  241. package/bundles/covalent-echarts-toolbox.umd.js +0 -460
  242. package/bundles/covalent-echarts-toolbox.umd.js.map +0 -1
  243. package/bundles/covalent-echarts-toolbox.umd.min.js +0 -2
  244. package/bundles/covalent-echarts-toolbox.umd.min.js.map +0 -1
  245. package/bundles/covalent-echarts-tooltip.umd.js +0 -476
  246. package/bundles/covalent-echarts-tooltip.umd.js.map +0 -1
  247. package/bundles/covalent-echarts-tooltip.umd.min.js +0 -2
  248. package/bundles/covalent-echarts-tooltip.umd.min.js.map +0 -1
  249. package/bundles/covalent-echarts-tree.umd.js +0 -584
  250. package/bundles/covalent-echarts-tree.umd.js.map +0 -1
  251. package/bundles/covalent-echarts-tree.umd.min.js +0 -16
  252. package/bundles/covalent-echarts-tree.umd.min.js.map +0 -1
  253. package/bundles/covalent-echarts-treemap.umd.js +0 -728
  254. package/bundles/covalent-echarts-treemap.umd.js.map +0 -1
  255. package/bundles/covalent-echarts-treemap.umd.min.js +0 -16
  256. package/bundles/covalent-echarts-treemap.umd.min.js.map +0 -1
  257. package/bundles/covalent-echarts-wordcloud.umd.js +0 -521
  258. package/bundles/covalent-echarts-wordcloud.umd.js.map +0 -1
  259. package/bundles/covalent-echarts-wordcloud.umd.min.js +0 -16
  260. package/bundles/covalent-echarts-wordcloud.umd.min.js.map +0 -1
  261. package/bundles/covalent-echarts.umd.js +0 -9
  262. package/bundles/covalent-echarts.umd.js.map +0 -1
  263. package/bundles/covalent-echarts.umd.min.js +0 -2
  264. package/bundles/covalent-echarts.umd.min.js.map +0 -1
  265. package/covalent-echarts.metadata.json +0 -1
  266. package/esm2015/bar/bar.component.js +0 -241
  267. package/esm2015/bar/bar.module.js +0 -21
  268. package/esm2015/bar/covalent-echarts-bar.js +0 -10
  269. package/esm2015/bar/index.js +0 -7
  270. package/esm2015/bar/public-api.js +0 -8
  271. package/esm2015/base/axis/axis.component.js +0 -209
  272. package/esm2015/base/axis/axis.interface.js +0 -324
  273. package/esm2015/base/axis/x-axis.component.js +0 -67
  274. package/esm2015/base/axis/y-axis.component.js +0 -67
  275. package/esm2015/base/base.module.js +0 -31
  276. package/esm2015/base/base.types.js +0 -278
  277. package/esm2015/base/chart-options.service.js +0 -115
  278. package/esm2015/base/chart.component.js +0 -354
  279. package/esm2015/base/covalent-echarts-base.js +0 -11
  280. package/esm2015/base/dataset/dataset.component.js +0 -93
  281. package/esm2015/base/index.js +0 -7
  282. package/esm2015/base/public-api.js +0 -15
  283. package/esm2015/base/series/series.component.js +0 -187
  284. package/esm2015/base/series/series.interface.js +0 -178
  285. package/esm2015/base/themes/aqua-splash.js +0 -465
  286. package/esm2015/base/themes/california-coast.js +0 -465
  287. package/esm2015/base/themes/passion-flower.js +0 -465
  288. package/esm2015/base/themes/razzleberry-pie.js +0 -465
  289. package/esm2015/base/themes/teradata-default.js +0 -465
  290. package/esm2015/base/themes/urban-sunrise.js +0 -465
  291. package/esm2015/base/utils/assign-defined.js +0 -37
  292. package/esm2015/base/utils/echarts.js +0 -60
  293. package/esm2015/base/utils/index.js +0 -8
  294. package/esm2015/covalent-echarts.js +0 -10
  295. package/esm2015/graph/covalent-echarts-graph.js +0 -10
  296. package/esm2015/graph/graph.component.js +0 -398
  297. package/esm2015/graph/graph.module.js +0 -21
  298. package/esm2015/graph/index.js +0 -7
  299. package/esm2015/graph/public-api.js +0 -8
  300. package/esm2015/index.js +0 -7
  301. package/esm2015/line/covalent-echarts-line.js +0 -10
  302. package/esm2015/line/index.js +0 -7
  303. package/esm2015/line/line.component.js +0 -291
  304. package/esm2015/line/line.module.js +0 -21
  305. package/esm2015/line/public-api.js +0 -8
  306. package/esm2015/map/covalent-echarts-map.js +0 -10
  307. package/esm2015/map/index.js +0 -7
  308. package/esm2015/map/map.component.js +0 -253
  309. package/esm2015/map/map.module.js +0 -21
  310. package/esm2015/map/public-api.js +0 -8
  311. package/esm2015/pie/covalent-echarts-pie.js +0 -10
  312. package/esm2015/pie/index.js +0 -7
  313. package/esm2015/pie/pie.component.js +0 -227
  314. package/esm2015/pie/pie.module.js +0 -21
  315. package/esm2015/pie/public-api.js +0 -8
  316. package/esm2015/sankey/covalent-echarts-sankey.js +0 -10
  317. package/esm2015/sankey/index.js +0 -7
  318. package/esm2015/sankey/public-api.js +0 -8
  319. package/esm2015/sankey/sankey.component.js +0 -223
  320. package/esm2015/sankey/sankey.module.js +0 -21
  321. package/esm2015/scatter/covalent-echarts-scatter.js +0 -10
  322. package/esm2015/scatter/index.js +0 -7
  323. package/esm2015/scatter/public-api.js +0 -8
  324. package/esm2015/scatter/scatter.component.js +0 -263
  325. package/esm2015/scatter/scatter.module.js +0 -21
  326. package/esm2015/toolbox/covalent-echarts-toolbox.js +0 -10
  327. package/esm2015/toolbox/index.js +0 -7
  328. package/esm2015/toolbox/public-api.js +0 -8
  329. package/esm2015/toolbox/toolbox.component.js +0 -405
  330. package/esm2015/toolbox/toolbox.module.js +0 -21
  331. package/esm2015/tooltip/covalent-echarts-tooltip.js +0 -10
  332. package/esm2015/tooltip/index.js +0 -7
  333. package/esm2015/tooltip/public-api.js +0 -9
  334. package/esm2015/tooltip/series-tooltip.component.js +0 -170
  335. package/esm2015/tooltip/tooltip.component.js +0 -246
  336. package/esm2015/tooltip/tooltip.module.js +0 -26
  337. package/esm2015/tree/covalent-echarts-tree.js +0 -10
  338. package/esm2015/tree/index.js +0 -7
  339. package/esm2015/tree/public-api.js +0 -8
  340. package/esm2015/tree/tree.component.js +0 -237
  341. package/esm2015/tree/tree.module.js +0 -21
  342. package/esm2015/treemap/covalent-echarts-treemap.js +0 -10
  343. package/esm2015/treemap/index.js +0 -7
  344. package/esm2015/treemap/public-api.js +0 -8
  345. package/esm2015/treemap/treemap.component.js +0 -380
  346. package/esm2015/treemap/treemap.module.js +0 -21
  347. package/esm2015/wordcloud/covalent-echarts-wordcloud.js +0 -10
  348. package/esm2015/wordcloud/index.js +0 -7
  349. package/esm2015/wordcloud/public-api.js +0 -8
  350. package/esm2015/wordcloud/wordcloud.component.js +0 -174
  351. package/esm2015/wordcloud/wordcloud.module.js +0 -21
  352. package/fesm2015/covalent-echarts-bar.js +0 -281
  353. package/fesm2015/covalent-echarts-base.js.map +0 -1
  354. package/fesm2015/covalent-echarts-graph.js +0 -438
  355. package/fesm2015/covalent-echarts-graph.js.map +0 -1
  356. package/fesm2015/covalent-echarts-line.js +0 -331
  357. package/fesm2015/covalent-echarts-line.js.map +0 -1
  358. package/fesm2015/covalent-echarts-map.js +0 -293
  359. package/fesm2015/covalent-echarts-pie.js +0 -267
  360. package/fesm2015/covalent-echarts-sankey.js +0 -263
  361. package/fesm2015/covalent-echarts-sankey.js.map +0 -1
  362. package/fesm2015/covalent-echarts-scatter.js +0 -303
  363. package/fesm2015/covalent-echarts-scatter.js.map +0 -1
  364. package/fesm2015/covalent-echarts-toolbox.js +0 -445
  365. package/fesm2015/covalent-echarts-toolbox.js.map +0 -1
  366. package/fesm2015/covalent-echarts-tooltip.js +0 -457
  367. package/fesm2015/covalent-echarts-tooltip.js.map +0 -1
  368. package/fesm2015/covalent-echarts-tree.js +0 -277
  369. package/fesm2015/covalent-echarts-tree.js.map +0 -1
  370. package/fesm2015/covalent-echarts-treemap.js +0 -420
  371. package/fesm2015/covalent-echarts-treemap.js.map +0 -1
  372. package/fesm2015/covalent-echarts-wordcloud.js +0 -214
  373. package/fesm2015/covalent-echarts-wordcloud.js.map +0 -1
  374. package/fesm2015/covalent-echarts.js +0 -12
  375. package/fesm2015/covalent-echarts.js.map +0 -1
  376. package/graph/covalent-echarts-graph.metadata.json +0 -1
  377. package/line/covalent-echarts-line.metadata.json +0 -1
  378. package/map/covalent-echarts-map.metadata.json +0 -1
  379. package/pie/covalent-echarts-pie.metadata.json +0 -1
  380. package/sankey/covalent-echarts-sankey.metadata.json +0 -1
  381. package/scatter/covalent-echarts-scatter.metadata.json +0 -1
  382. package/toolbox/covalent-echarts-toolbox.metadata.json +0 -1
  383. package/tooltip/covalent-echarts-tooltip.metadata.json +0 -1
  384. package/tree/covalent-echarts-tree.metadata.json +0 -1
  385. package/treemap/covalent-echarts-treemap.metadata.json +0 -1
  386. package/wordcloud/covalent-echarts-wordcloud.metadata.json +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,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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"}