@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,331 +0,0 @@
1
- import { Component, ChangeDetectionStrategy, forwardRef, Input, NgModule } from '@angular/core';
2
- import { CommonModule } from '@angular/common';
3
- import 'echarts/lib/chart/line';
4
- import { TdSeriesDirective, TdChartOptionsService } from '@covalent/echarts/base';
5
-
6
- /**
7
- * @fileoverview added by tsickle
8
- * Generated from: line.component.ts
9
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
10
- */
11
- /**
12
- * @record
13
- */
14
- function ITdLineSeries() { }
15
- if (false) {
16
- /** @type {?|undefined} */
17
- ITdLineSeries.prototype.coordinateSystem;
18
- /** @type {?|undefined} */
19
- ITdLineSeries.prototype.xAxisIndex;
20
- /** @type {?|undefined} */
21
- ITdLineSeries.prototype.yAxisIndex;
22
- /** @type {?|undefined} */
23
- ITdLineSeries.prototype.polarIndex;
24
- /** @type {?|undefined} */
25
- ITdLineSeries.prototype.symbol;
26
- /** @type {?|undefined} */
27
- ITdLineSeries.prototype.symbolSize;
28
- /** @type {?|undefined} */
29
- ITdLineSeries.prototype.symbolRotate;
30
- /** @type {?|undefined} */
31
- ITdLineSeries.prototype.symbolKeepAspect;
32
- /** @type {?|undefined} */
33
- ITdLineSeries.prototype.symbolOffset;
34
- /** @type {?|undefined} */
35
- ITdLineSeries.prototype.showSymbol;
36
- /** @type {?|undefined} */
37
- ITdLineSeries.prototype.showAllSymbol;
38
- /** @type {?|undefined} */
39
- ITdLineSeries.prototype.hoverAnimation;
40
- /** @type {?|undefined} */
41
- ITdLineSeries.prototype.legendHoverLink;
42
- /** @type {?|undefined} */
43
- ITdLineSeries.prototype.stack;
44
- /** @type {?|undefined} */
45
- ITdLineSeries.prototype.cursor;
46
- /** @type {?|undefined} */
47
- ITdLineSeries.prototype.connectNulls;
48
- /** @type {?|undefined} */
49
- ITdLineSeries.prototype.clipOverflow;
50
- /** @type {?|undefined} */
51
- ITdLineSeries.prototype.step;
52
- /** @type {?|undefined} */
53
- ITdLineSeries.prototype.label;
54
- /** @type {?|undefined} */
55
- ITdLineSeries.prototype.itemStyle;
56
- /** @type {?|undefined} */
57
- ITdLineSeries.prototype.lineStyle;
58
- /** @type {?|undefined} */
59
- ITdLineSeries.prototype.width;
60
- /** @type {?|undefined} */
61
- ITdLineSeries.prototype.opacity;
62
- /** @type {?|undefined} */
63
- ITdLineSeries.prototype.areaStyle;
64
- /** @type {?|undefined} */
65
- ITdLineSeries.prototype.emphasis;
66
- /** @type {?|undefined} */
67
- ITdLineSeries.prototype.smooth;
68
- /** @type {?|undefined} */
69
- ITdLineSeries.prototype.smoothMonotone;
70
- /** @type {?|undefined} */
71
- ITdLineSeries.prototype.sampling;
72
- /** @type {?|undefined} */
73
- ITdLineSeries.prototype.dimensions;
74
- /** @type {?|undefined} */
75
- ITdLineSeries.prototype.encode;
76
- /** @type {?|undefined} */
77
- ITdLineSeries.prototype.seriesLayoutBy;
78
- /** @type {?|undefined} */
79
- ITdLineSeries.prototype.datasetIndex;
80
- /** @type {?|undefined} */
81
- ITdLineSeries.prototype.data;
82
- /** @type {?|undefined} */
83
- ITdLineSeries.prototype.markPoint;
84
- /** @type {?|undefined} */
85
- ITdLineSeries.prototype.markLine;
86
- /** @type {?|undefined} */
87
- ITdLineSeries.prototype.markArea;
88
- /** @type {?|undefined} */
89
- ITdLineSeries.prototype.zlevel;
90
- /** @type {?|undefined} */
91
- ITdLineSeries.prototype.z;
92
- /** @type {?|undefined} */
93
- ITdLineSeries.prototype.silent;
94
- }
95
- class TdChartSeriesLineComponent extends TdSeriesDirective {
96
- /**
97
- * @param {?} _optionsService
98
- */
99
- constructor(_optionsService) {
100
- super('line', _optionsService);
101
- }
102
- /**
103
- * @return {?}
104
- */
105
- getConfig() {
106
- return {
107
- coordinateSystem: this.coordinateSystem,
108
- xAxisIndex: this.xAxisIndex,
109
- yAxisIndex: this.yAxisIndex,
110
- polarIndex: this.polarIndex,
111
- symbol: this.symbol,
112
- symbolSize: this.symbolSize,
113
- symbolRotate: this.symbolRotate,
114
- symbolKeepAspect: this.symbolKeepAspect,
115
- symbolOffset: this.symbolOffset,
116
- showSymbol: this.showSymbol,
117
- showAllSymbol: this.showAllSymbol,
118
- hoverAnimation: this.hoverAnimation,
119
- legendHoverLink: this.legendHoverLink,
120
- stack: this.stack,
121
- cursor: this.cursor,
122
- connectNulls: this.connectNulls,
123
- clipOverflow: this.clipOverflow,
124
- step: this.step,
125
- label: this.label,
126
- itemStyle: this.itemStyle,
127
- lineStyle: this.lineStyle,
128
- areaStyle: this.areaStyle,
129
- emphasis: this.emphasis,
130
- smooth: this.smooth,
131
- smoothMonotone: this.smoothMonotone,
132
- sampling: this.sampling,
133
- dimensions: this.dimensions,
134
- encode: this.encode,
135
- seriesLayoutBy: this.seriesLayoutBy,
136
- datasetIndex: this.datasetIndex,
137
- markPoint: this.markPoint,
138
- markLine: this.markLine,
139
- markArea: this.markArea,
140
- zlevel: this.zlevel,
141
- z: this.z,
142
- silent: this.silent,
143
- };
144
- }
145
- }
146
- TdChartSeriesLineComponent.decorators = [
147
- { type: Component, args: [{
148
- selector: 'td-chart-series[td-line]',
149
- template: '',
150
- changeDetection: ChangeDetectionStrategy.OnPush,
151
- inputs: [
152
- 'config',
153
- 'id',
154
- 'name',
155
- 'color',
156
- 'data',
157
- 'animation',
158
- 'animationThreshold',
159
- 'animationDuration',
160
- 'animationEasing',
161
- 'animationDelay',
162
- 'animationDurationUpdate',
163
- 'animationEasingUpdate',
164
- 'animationDelayUpdate',
165
- 'tooltip',
166
- ],
167
- providers: [
168
- {
169
- provide: TdSeriesDirective,
170
- useExisting: forwardRef((/**
171
- * @return {?}
172
- */
173
- () => TdChartSeriesLineComponent)),
174
- },
175
- ]
176
- }] }
177
- ];
178
- /** @nocollapse */
179
- TdChartSeriesLineComponent.ctorParameters = () => [
180
- { type: TdChartOptionsService }
181
- ];
182
- TdChartSeriesLineComponent.propDecorators = {
183
- coordinateSystem: [{ type: Input }],
184
- xAxisIndex: [{ type: Input }],
185
- yAxisIndex: [{ type: Input }],
186
- polarIndex: [{ type: Input }],
187
- symbol: [{ type: Input }],
188
- symbolSize: [{ type: Input }],
189
- symbolRotate: [{ type: Input }],
190
- symbolKeepAspect: [{ type: Input }],
191
- symbolOffset: [{ type: Input }],
192
- showSymbol: [{ type: Input }],
193
- showAllSymbol: [{ type: Input }],
194
- hoverAnimation: [{ type: Input }],
195
- legendHoverLink: [{ type: Input }],
196
- stack: [{ type: Input }],
197
- cursor: [{ type: Input }],
198
- connectNulls: [{ type: Input }],
199
- clipOverflow: [{ type: Input }],
200
- step: [{ type: Input }],
201
- label: [{ type: Input }],
202
- itemStyle: [{ type: Input }],
203
- lineStyle: [{ type: Input }],
204
- areaStyle: [{ type: Input }],
205
- emphasis: [{ type: Input }],
206
- smooth: [{ type: Input }],
207
- smoothMonotone: [{ type: Input }],
208
- sampling: [{ type: Input }],
209
- dimensions: [{ type: Input }],
210
- encode: [{ type: Input }],
211
- seriesLayoutBy: [{ type: Input }],
212
- datasetIndex: [{ type: Input }],
213
- markPoint: [{ type: Input }],
214
- markLine: [{ type: Input }],
215
- markArea: [{ type: Input }],
216
- zlevel: [{ type: Input }],
217
- z: [{ type: Input }],
218
- silent: [{ type: Input }]
219
- };
220
- if (false) {
221
- /** @type {?} */
222
- TdChartSeriesLineComponent.prototype.coordinateSystem;
223
- /** @type {?} */
224
- TdChartSeriesLineComponent.prototype.xAxisIndex;
225
- /** @type {?} */
226
- TdChartSeriesLineComponent.prototype.yAxisIndex;
227
- /** @type {?} */
228
- TdChartSeriesLineComponent.prototype.polarIndex;
229
- /** @type {?} */
230
- TdChartSeriesLineComponent.prototype.symbol;
231
- /** @type {?} */
232
- TdChartSeriesLineComponent.prototype.symbolSize;
233
- /** @type {?} */
234
- TdChartSeriesLineComponent.prototype.symbolRotate;
235
- /** @type {?} */
236
- TdChartSeriesLineComponent.prototype.symbolKeepAspect;
237
- /** @type {?} */
238
- TdChartSeriesLineComponent.prototype.symbolOffset;
239
- /** @type {?} */
240
- TdChartSeriesLineComponent.prototype.showSymbol;
241
- /** @type {?} */
242
- TdChartSeriesLineComponent.prototype.showAllSymbol;
243
- /** @type {?} */
244
- TdChartSeriesLineComponent.prototype.hoverAnimation;
245
- /** @type {?} */
246
- TdChartSeriesLineComponent.prototype.legendHoverLink;
247
- /** @type {?} */
248
- TdChartSeriesLineComponent.prototype.stack;
249
- /** @type {?} */
250
- TdChartSeriesLineComponent.prototype.cursor;
251
- /** @type {?} */
252
- TdChartSeriesLineComponent.prototype.connectNulls;
253
- /** @type {?} */
254
- TdChartSeriesLineComponent.prototype.clipOverflow;
255
- /** @type {?} */
256
- TdChartSeriesLineComponent.prototype.step;
257
- /** @type {?} */
258
- TdChartSeriesLineComponent.prototype.label;
259
- /** @type {?} */
260
- TdChartSeriesLineComponent.prototype.itemStyle;
261
- /** @type {?} */
262
- TdChartSeriesLineComponent.prototype.lineStyle;
263
- /** @type {?} */
264
- TdChartSeriesLineComponent.prototype.areaStyle;
265
- /** @type {?} */
266
- TdChartSeriesLineComponent.prototype.emphasis;
267
- /** @type {?} */
268
- TdChartSeriesLineComponent.prototype.smooth;
269
- /** @type {?} */
270
- TdChartSeriesLineComponent.prototype.smoothMonotone;
271
- /** @type {?} */
272
- TdChartSeriesLineComponent.prototype.sampling;
273
- /** @type {?} */
274
- TdChartSeriesLineComponent.prototype.dimensions;
275
- /** @type {?} */
276
- TdChartSeriesLineComponent.prototype.encode;
277
- /** @type {?} */
278
- TdChartSeriesLineComponent.prototype.seriesLayoutBy;
279
- /** @type {?} */
280
- TdChartSeriesLineComponent.prototype.datasetIndex;
281
- /** @type {?} */
282
- TdChartSeriesLineComponent.prototype.markPoint;
283
- /** @type {?} */
284
- TdChartSeriesLineComponent.prototype.markLine;
285
- /** @type {?} */
286
- TdChartSeriesLineComponent.prototype.markArea;
287
- /** @type {?} */
288
- TdChartSeriesLineComponent.prototype.zlevel;
289
- /** @type {?} */
290
- TdChartSeriesLineComponent.prototype.z;
291
- /** @type {?} */
292
- TdChartSeriesLineComponent.prototype.silent;
293
- }
294
-
295
- /**
296
- * @fileoverview added by tsickle
297
- * Generated from: line.module.ts
298
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
299
- */
300
- /** @type {?} */
301
- const LINE_MODULE_COMPONENTS = [TdChartSeriesLineComponent];
302
- class CovalentLineEchartsModule {
303
- }
304
- CovalentLineEchartsModule.decorators = [
305
- { type: NgModule, args: [{
306
- imports: [CommonModule],
307
- declarations: [LINE_MODULE_COMPONENTS],
308
- exports: [LINE_MODULE_COMPONENTS],
309
- },] }
310
- ];
311
-
312
- /**
313
- * @fileoverview added by tsickle
314
- * Generated from: public-api.ts
315
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
316
- */
317
-
318
- /**
319
- * @fileoverview added by tsickle
320
- * Generated from: index.ts
321
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
322
- */
323
-
324
- /**
325
- * @fileoverview added by tsickle
326
- * Generated from: covalent-echarts-line.ts
327
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
328
- */
329
-
330
- export { CovalentLineEchartsModule, LINE_MODULE_COMPONENTS, TdChartSeriesLineComponent };
331
- //# sourceMappingURL=covalent-echarts-line.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"covalent-echarts-line.js","sources":["../../../../src/platform/echarts/line/line.component.ts","../../../../src/platform/echarts/line/line.module.ts"],"sourcesContent":["import { Component, Input, ChangeDetectionStrategy, forwardRef } from '@angular/core';\n\nimport {\n TdChartOptionsService,\n TdCoordinateSystem,\n TdMarkPointSymbol,\n ITdLabel,\n ITdItemStyle,\n ITdLineStyle,\n ITdAreaStyle,\n TdSeriesLayoutBy,\n ITdMarkPoint,\n ITdMarkLine,\n ITdMarkArea,\n ITdEmphasis,\n ITdSeries,\n ITdShadow,\n TdSeriesDirective,\n} from '@covalent/echarts/base';\n\nexport type TdSampling = 'average' | 'max' | 'min' | 'sum';\n\nexport interface ITdLineSeries extends ITdSeries, ITdShadow {\n coordinateSystem?: TdCoordinateSystem;\n xAxisIndex?: number;\n yAxisIndex?: number;\n polarIndex?: number;\n symbol?: TdMarkPointSymbol | string;\n symbolSize?: number | any[] | Function;\n symbolRotate?: number;\n symbolKeepAspect?: boolean;\n symbolOffset?: any[];\n showSymbol?: boolean;\n showAllSymbol?: boolean | 'auto';\n hoverAnimation?: boolean;\n legendHoverLink?: boolean;\n stack?: string;\n cursor?: string;\n connectNulls?: boolean;\n clipOverflow?: boolean;\n step?: string | boolean;\n label?: ITdLabel;\n itemStyle?: ITdItemStyle;\n lineStyle?: ITdLineStyle;\n width?: number;\n opacity?: number;\n areaStyle?: ITdAreaStyle;\n emphasis?: ITdEmphasis;\n smooth?: boolean | number;\n smoothMonotone?: string;\n sampling?: TdSampling;\n dimensions?: any[];\n encode?: any;\n seriesLayoutBy?: TdSeriesLayoutBy;\n datasetIndex?: number;\n data?: any[];\n markPoint?: ITdMarkPoint;\n markLine?: ITdMarkLine;\n markArea?: ITdMarkArea;\n zlevel?: number;\n z?: number;\n silent?: boolean;\n}\n\n@Component({\n selector: 'td-chart-series[td-line]',\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(() => TdChartSeriesLineComponent),\n },\n ],\n})\nexport class TdChartSeriesLineComponent extends TdSeriesDirective implements ITdLineSeries {\n @Input() coordinateSystem: TdCoordinateSystem;\n @Input() xAxisIndex: number;\n @Input() yAxisIndex: number;\n @Input() polarIndex: number;\n @Input() symbol: TdMarkPointSymbol | string;\n @Input() symbolSize: number | any[] | Function;\n @Input() symbolRotate: number;\n @Input() symbolKeepAspect: boolean;\n @Input() symbolOffset: any[];\n @Input() showSymbol: boolean;\n @Input() showAllSymbol: boolean;\n @Input() hoverAnimation: boolean;\n @Input() legendHoverLink: boolean;\n @Input() stack: string;\n @Input() cursor: string;\n @Input() connectNulls: boolean;\n @Input() clipOverflow: boolean;\n @Input() step: string | boolean;\n @Input() label: ITdLabel;\n @Input() itemStyle: ITdItemStyle;\n @Input() lineStyle: ITdLineStyle;\n @Input() areaStyle: ITdAreaStyle;\n @Input() emphasis: ITdEmphasis;\n @Input() smooth: boolean | number;\n @Input() smoothMonotone: string;\n @Input() sampling: TdSampling;\n @Input() dimensions: any[];\n @Input() encode: any;\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() silent: boolean;\n\n constructor(_optionsService: TdChartOptionsService) {\n super('line', _optionsService);\n }\n\n getConfig(): any {\n return {\n coordinateSystem: this.coordinateSystem,\n xAxisIndex: this.xAxisIndex,\n yAxisIndex: this.yAxisIndex,\n polarIndex: this.polarIndex,\n symbol: this.symbol,\n symbolSize: this.symbolSize,\n symbolRotate: this.symbolRotate,\n symbolKeepAspect: this.symbolKeepAspect,\n symbolOffset: this.symbolOffset,\n showSymbol: this.showSymbol,\n showAllSymbol: this.showAllSymbol,\n hoverAnimation: this.hoverAnimation,\n legendHoverLink: this.legendHoverLink,\n stack: this.stack,\n cursor: this.cursor,\n connectNulls: this.connectNulls,\n clipOverflow: this.clipOverflow,\n step: this.step,\n label: this.label,\n itemStyle: this.itemStyle,\n lineStyle: this.lineStyle,\n areaStyle: this.areaStyle,\n emphasis: this.emphasis,\n smooth: this.smooth,\n smoothMonotone: this.smoothMonotone,\n sampling: this.sampling,\n dimensions: this.dimensions,\n encode: this.encode,\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 silent: this.silent,\n };\n }\n}\n","import { NgModule, Type } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport 'echarts/lib/chart/line';\n\nimport { TdChartSeriesLineComponent } from './line.component';\n\nexport const LINE_MODULE_COMPONENTS: Type<any>[] = [TdChartSeriesLineComponent];\n\n@NgModule({\n imports: [CommonModule],\n declarations: [LINE_MODULE_COMPONENTS],\n exports: [LINE_MODULE_COMPONENTS],\n})\nexport class CovalentLineEchartsModule {}\n"],"names":[],"mappings":"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"}
@@ -1,293 +0,0 @@
1
- import { Component, ChangeDetectionStrategy, forwardRef, Input, NgModule } from '@angular/core';
2
- import { CommonModule } from '@angular/common';
3
- import 'echarts/lib/chart/map';
4
- import { TdSeriesDirective, TdChartOptionsService } from '@covalent/echarts/base';
5
-
6
- /**
7
- * @fileoverview added by tsickle
8
- * Generated from: map.component.ts
9
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
10
- */
11
- /**
12
- * @record
13
- */
14
- function ITdMapScaleLimit() { }
15
- if (false) {
16
- /** @type {?|undefined} */
17
- ITdMapScaleLimit.prototype.min;
18
- /** @type {?|undefined} */
19
- ITdMapScaleLimit.prototype.max;
20
- }
21
- /**
22
- * @record
23
- */
24
- function ITdMapItemStyle() { }
25
- if (false) {
26
- /** @type {?|undefined} */
27
- ITdMapItemStyle.prototype.areaColor;
28
- /** @type {?|undefined} */
29
- ITdMapItemStyle.prototype.emphasis;
30
- }
31
- /**
32
- * @record
33
- */
34
- function ITdMapSeries() { }
35
- if (false) {
36
- /** @type {?|undefined} */
37
- ITdMapSeries.prototype.map;
38
- /** @type {?|undefined} */
39
- ITdMapSeries.prototype.roam;
40
- /** @type {?|undefined} */
41
- ITdMapSeries.prototype.center;
42
- /** @type {?|undefined} */
43
- ITdMapSeries.prototype.aspectScale;
44
- /** @type {?|undefined} */
45
- ITdMapSeries.prototype.boudingCoords;
46
- /** @type {?|undefined} */
47
- ITdMapSeries.prototype.zoom;
48
- /** @type {?|undefined} */
49
- ITdMapSeries.prototype.scaleLimit;
50
- /** @type {?|undefined} */
51
- ITdMapSeries.prototype.nameMap;
52
- /** @type {?|undefined} */
53
- ITdMapSeries.prototype.selectedMode;
54
- /** @type {?|undefined} */
55
- ITdMapSeries.prototype.label;
56
- /** @type {?|undefined} */
57
- ITdMapSeries.prototype.itemStyle;
58
- /** @type {?|undefined} */
59
- ITdMapSeries.prototype.zLevel;
60
- /** @type {?|undefined} */
61
- ITdMapSeries.prototype.z;
62
- /** @type {?|undefined} */
63
- ITdMapSeries.prototype.left;
64
- /** @type {?|undefined} */
65
- ITdMapSeries.prototype.top;
66
- /** @type {?|undefined} */
67
- ITdMapSeries.prototype.right;
68
- /** @type {?|undefined} */
69
- ITdMapSeries.prototype.bottom;
70
- /** @type {?|undefined} */
71
- ITdMapSeries.prototype.layoutCenter;
72
- /** @type {?|undefined} */
73
- ITdMapSeries.prototype.layoutSize;
74
- /** @type {?|undefined} */
75
- ITdMapSeries.prototype.geoIndex;
76
- /** @type {?|undefined} */
77
- ITdMapSeries.prototype.mapValueCalculation;
78
- /** @type {?|undefined} */
79
- ITdMapSeries.prototype.showLegendSymbol;
80
- /** @type {?|undefined} */
81
- ITdMapSeries.prototype.seriesLayoutBy;
82
- /** @type {?|undefined} */
83
- ITdMapSeries.prototype.data;
84
- /** @type {?|undefined} */
85
- ITdMapSeries.prototype.markPoint;
86
- /** @type {?|undefined} */
87
- ITdMapSeries.prototype.markLine;
88
- /** @type {?|undefined} */
89
- ITdMapSeries.prototype.markArea;
90
- /** @type {?|undefined} */
91
- ITdMapSeries.prototype.silent;
92
- }
93
- class TdChartSeriesMapComponent extends TdSeriesDirective {
94
- /**
95
- * @param {?} _optionsService
96
- */
97
- constructor(_optionsService) {
98
- super('map', _optionsService);
99
- }
100
- /**
101
- * @return {?}
102
- */
103
- getConfig() {
104
- return {
105
- map: this.map,
106
- roam: this.roam,
107
- center: this.center,
108
- aspectScale: this.aspectScale,
109
- boudingCoords: this.boudingCoords,
110
- zoom: this.zoom,
111
- scaleLimit: this.scaleLimit,
112
- nameMap: this.nameMap,
113
- selectedMode: this.selectedMode,
114
- label: this.label,
115
- itemStyle: this.itemStyle,
116
- zLevel: this.zLevel,
117
- z: this.z,
118
- left: this.left,
119
- top: this.top,
120
- right: this.right,
121
- bottom: this.bottom,
122
- layoutCenter: this.layoutCenter,
123
- layoutSize: this.layoutSize,
124
- geoIndex: this.geoIndex,
125
- mapValueCalculation: this.mapValueCalculation,
126
- showLegendSymbol: this.showLegendSymbol,
127
- seriesLayoutBy: this.seriesLayoutBy,
128
- markPoint: this.markPoint,
129
- markLine: this.markLine,
130
- markArea: this.markArea,
131
- silent: this.silent,
132
- };
133
- }
134
- }
135
- TdChartSeriesMapComponent.decorators = [
136
- { type: Component, args: [{
137
- selector: 'td-chart-series[td-map]',
138
- template: '',
139
- changeDetection: ChangeDetectionStrategy.OnPush,
140
- inputs: [
141
- 'config',
142
- 'id',
143
- 'name',
144
- 'color',
145
- 'data',
146
- 'animation',
147
- 'animationThreshold',
148
- 'animationDuration',
149
- 'animationEasing',
150
- 'animationDelay',
151
- 'animationDurationUpdate',
152
- 'animationEasingUpdate',
153
- 'animationDelayUpdate',
154
- 'tooltip',
155
- ],
156
- providers: [
157
- {
158
- provide: TdSeriesDirective,
159
- useExisting: forwardRef((/**
160
- * @return {?}
161
- */
162
- () => TdChartSeriesMapComponent)),
163
- },
164
- ]
165
- }] }
166
- ];
167
- /** @nocollapse */
168
- TdChartSeriesMapComponent.ctorParameters = () => [
169
- { type: TdChartOptionsService }
170
- ];
171
- TdChartSeriesMapComponent.propDecorators = {
172
- map: [{ type: Input }],
173
- roam: [{ type: Input }],
174
- center: [{ type: Input }],
175
- aspectScale: [{ type: Input }],
176
- boudingCoords: [{ type: Input }],
177
- zoom: [{ type: Input }],
178
- scaleLimit: [{ type: Input }],
179
- nameMap: [{ type: Input }],
180
- selectedMode: [{ type: Input }],
181
- label: [{ type: Input }],
182
- itemStyle: [{ type: Input }],
183
- zLevel: [{ type: Input }],
184
- z: [{ type: Input }],
185
- left: [{ type: Input }],
186
- top: [{ type: Input }],
187
- right: [{ type: Input }],
188
- bottom: [{ type: Input }],
189
- layoutCenter: [{ type: Input }],
190
- layoutSize: [{ type: Input }],
191
- geoIndex: [{ type: Input }],
192
- mapValueCalculation: [{ type: Input }],
193
- showLegendSymbol: [{ type: Input }],
194
- seriesLayoutBy: [{ type: Input }],
195
- markPoint: [{ type: Input }],
196
- markLine: [{ type: Input }],
197
- markArea: [{ type: Input }],
198
- silent: [{ type: Input }]
199
- };
200
- if (false) {
201
- /** @type {?} */
202
- TdChartSeriesMapComponent.prototype.map;
203
- /** @type {?} */
204
- TdChartSeriesMapComponent.prototype.roam;
205
- /** @type {?} */
206
- TdChartSeriesMapComponent.prototype.center;
207
- /** @type {?} */
208
- TdChartSeriesMapComponent.prototype.aspectScale;
209
- /** @type {?} */
210
- TdChartSeriesMapComponent.prototype.boudingCoords;
211
- /** @type {?} */
212
- TdChartSeriesMapComponent.prototype.zoom;
213
- /** @type {?} */
214
- TdChartSeriesMapComponent.prototype.scaleLimit;
215
- /** @type {?} */
216
- TdChartSeriesMapComponent.prototype.nameMap;
217
- /** @type {?} */
218
- TdChartSeriesMapComponent.prototype.selectedMode;
219
- /** @type {?} */
220
- TdChartSeriesMapComponent.prototype.label;
221
- /** @type {?} */
222
- TdChartSeriesMapComponent.prototype.itemStyle;
223
- /** @type {?} */
224
- TdChartSeriesMapComponent.prototype.zLevel;
225
- /** @type {?} */
226
- TdChartSeriesMapComponent.prototype.z;
227
- /** @type {?} */
228
- TdChartSeriesMapComponent.prototype.left;
229
- /** @type {?} */
230
- TdChartSeriesMapComponent.prototype.top;
231
- /** @type {?} */
232
- TdChartSeriesMapComponent.prototype.right;
233
- /** @type {?} */
234
- TdChartSeriesMapComponent.prototype.bottom;
235
- /** @type {?} */
236
- TdChartSeriesMapComponent.prototype.layoutCenter;
237
- /** @type {?} */
238
- TdChartSeriesMapComponent.prototype.layoutSize;
239
- /** @type {?} */
240
- TdChartSeriesMapComponent.prototype.geoIndex;
241
- /** @type {?} */
242
- TdChartSeriesMapComponent.prototype.mapValueCalculation;
243
- /** @type {?} */
244
- TdChartSeriesMapComponent.prototype.showLegendSymbol;
245
- /** @type {?} */
246
- TdChartSeriesMapComponent.prototype.seriesLayoutBy;
247
- /** @type {?} */
248
- TdChartSeriesMapComponent.prototype.markPoint;
249
- /** @type {?} */
250
- TdChartSeriesMapComponent.prototype.markLine;
251
- /** @type {?} */
252
- TdChartSeriesMapComponent.prototype.markArea;
253
- /** @type {?} */
254
- TdChartSeriesMapComponent.prototype.silent;
255
- }
256
-
257
- /**
258
- * @fileoverview added by tsickle
259
- * Generated from: map.module.ts
260
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
261
- */
262
- /** @type {?} */
263
- const MAP_MODULE_COMPONENTS = [TdChartSeriesMapComponent];
264
- class CovalentMapEchartsModule {
265
- }
266
- CovalentMapEchartsModule.decorators = [
267
- { type: NgModule, args: [{
268
- imports: [CommonModule],
269
- declarations: [MAP_MODULE_COMPONENTS],
270
- exports: [MAP_MODULE_COMPONENTS],
271
- },] }
272
- ];
273
-
274
- /**
275
- * @fileoverview added by tsickle
276
- * Generated from: public-api.ts
277
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
278
- */
279
-
280
- /**
281
- * @fileoverview added by tsickle
282
- * Generated from: index.ts
283
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
284
- */
285
-
286
- /**
287
- * @fileoverview added by tsickle
288
- * Generated from: covalent-echarts-map.ts
289
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
290
- */
291
-
292
- export { CovalentMapEchartsModule, MAP_MODULE_COMPONENTS, TdChartSeriesMapComponent };
293
- //# sourceMappingURL=covalent-echarts-map.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"covalent-echarts-map.js","sources":["../../../../src/platform/echarts/map/map.component.ts","../../../../src/platform/echarts/map/map.module.ts"],"sourcesContent":["import { Component, Input, ChangeDetectionStrategy, forwardRef } from '@angular/core';\n\nimport {\n TdChartOptionsService,\n ITdItemStyle,\n ITdMarkPoint,\n ITdMarkLine,\n ITdMarkArea,\n ITdSeries,\n ITdLabel,\n TdSeriesDirective,\n} from '@covalent/echarts/base';\n\nexport type TdMapValueCalculation = 'sum' | 'average' | 'max' | 'min';\nexport type TdMapSeriesLayoutBy = 'column' | 'row';\n\nexport interface ITdMapScaleLimit {\n min?: number;\n max?: number;\n}\n\nexport interface ITdMapItemStyle {\n areaColor?: ITdItemStyle;\n emphasis?: ITdItemStyle;\n}\n\nexport interface ITdMapSeries extends ITdSeries {\n map?: string;\n roam?: boolean;\n center?: number[];\n aspectScale?: number;\n boudingCoords?: any[];\n zoom?: number;\n scaleLimit?: ITdMapScaleLimit;\n nameMap?: object;\n selectedMode?: boolean | string;\n label?: ITdLabel;\n itemStyle?: ITdMapItemStyle;\n zLevel?: number;\n z?: number;\n left?: string | number;\n top?: string | number;\n right?: string | number;\n bottom?: string | number;\n layoutCenter?: any[];\n layoutSize?: any[];\n geoIndex?: number;\n mapValueCalculation?: TdMapValueCalculation;\n showLegendSymbol?: boolean;\n seriesLayoutBy?: string;\n data?: any[];\n markPoint?: ITdMarkPoint;\n markLine?: ITdMarkLine;\n markArea?: ITdMarkArea;\n silent?: boolean;\n}\n\n@Component({\n selector: 'td-chart-series[td-map]',\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(() => TdChartSeriesMapComponent),\n },\n ],\n})\nexport class TdChartSeriesMapComponent extends TdSeriesDirective implements ITdMapSeries {\n @Input() map: string;\n @Input() roam: boolean;\n @Input() center: number[];\n @Input() aspectScale: number;\n @Input() boudingCoords: any[];\n @Input() zoom: number;\n @Input() scaleLimit: ITdMapScaleLimit;\n @Input() nameMap: object;\n @Input() selectedMode: boolean | string;\n @Input() label: ITdLabel;\n @Input() itemStyle: ITdMapItemStyle;\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() layoutCenter: any[];\n @Input() layoutSize: any[];\n @Input() geoIndex: number;\n @Input() mapValueCalculation: TdMapValueCalculation;\n @Input() showLegendSymbol: boolean;\n @Input() seriesLayoutBy: string;\n @Input() markPoint: ITdMarkPoint;\n @Input() markLine: ITdMarkLine;\n @Input() markArea: ITdMarkArea;\n @Input() silent: boolean;\n\n constructor(_optionsService: TdChartOptionsService) {\n super('map', _optionsService);\n }\n\n getConfig(): any {\n return {\n map: this.map,\n roam: this.roam,\n center: this.center,\n aspectScale: this.aspectScale,\n boudingCoords: this.boudingCoords,\n zoom: this.zoom,\n scaleLimit: this.scaleLimit,\n nameMap: this.nameMap,\n selectedMode: this.selectedMode,\n label: this.label,\n itemStyle: this.itemStyle,\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 layoutCenter: this.layoutCenter,\n layoutSize: this.layoutSize,\n geoIndex: this.geoIndex,\n mapValueCalculation: this.mapValueCalculation,\n showLegendSymbol: this.showLegendSymbol,\n seriesLayoutBy: this.seriesLayoutBy,\n markPoint: this.markPoint,\n markLine: this.markLine,\n markArea: this.markArea,\n silent: this.silent,\n };\n }\n}\n","import { NgModule, Type } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport 'echarts/lib/chart/map';\n\nimport { TdChartSeriesMapComponent } from './map.component';\n\nexport const MAP_MODULE_COMPONENTS: Type<any>[] = [TdChartSeriesMapComponent];\n\n@NgModule({\n imports: [CommonModule],\n declarations: [MAP_MODULE_COMPONENTS],\n exports: [MAP_MODULE_COMPONENTS],\n})\nexport class CovalentMapEchartsModule {}\n"],"names":[],"mappings":"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"}