@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
@@ -0,0 +1,158 @@
1
+ import * as i0 from '@angular/core';
2
+ import { Directive, TemplateRef, Component, ChangeDetectionStrategy, Input, ContentChild, ViewChild, NgModule } from '@angular/core';
3
+ import * as i2 from '@angular/common';
4
+ import { CommonModule } from '@angular/common';
5
+ import * as i1 from '@covalent/echarts/base';
6
+ import { assignDefined } from '@covalent/echarts/base';
7
+
8
+ class TdChartViewDataFormatterDirective {
9
+ }
10
+ TdChartViewDataFormatterDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TdChartViewDataFormatterDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
11
+ TdChartViewDataFormatterDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.2.2", type: TdChartViewDataFormatterDirective, selector: "ng-template[tdViewDataFormatter]", ngImport: i0 });
12
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TdChartViewDataFormatterDirective, decorators: [{
13
+ type: Directive,
14
+ args: [{
15
+ selector: 'ng-template[tdViewDataFormatter]',
16
+ }]
17
+ }] });
18
+ class TdChartToolboxComponent {
19
+ constructor(_changeDetectorRef, _elementRef, _optionsService) {
20
+ this._changeDetectorRef = _changeDetectorRef;
21
+ this._elementRef = _elementRef;
22
+ this._optionsService = _optionsService;
23
+ this._state = {};
24
+ this.config = {};
25
+ this.show = true;
26
+ this.showTitle = true;
27
+ this.transitionDuration = 0.5;
28
+ this.left = 'auto';
29
+ this.top = 'auto';
30
+ this.right = 'auto';
31
+ this.bottom = 'auto';
32
+ this.width = 'auto';
33
+ this.height = 'auto';
34
+ }
35
+ ngOnChanges() {
36
+ this._setOptions();
37
+ }
38
+ ngOnDestroy() {
39
+ this._removeOption();
40
+ }
41
+ _setOptions() {
42
+ this._checkFormatterTemplate();
43
+ const config = assignDefined(this._state, {
44
+ show: this.show,
45
+ name: this.trigger,
46
+ orient: this.orient,
47
+ itemSize: this.itemSize,
48
+ itemGap: this.itemGap,
49
+ showTitle: this.showTitle,
50
+ label: this.label,
51
+ feature: this.feature,
52
+ iconStyle: this.iconStyle,
53
+ zlevel: this.zlevel,
54
+ z: this.z,
55
+ transitionDuration: this.transitionDuration,
56
+ left: this.left,
57
+ top: this.top,
58
+ right: this.right,
59
+ bottom: this.bottom,
60
+ width: this.width,
61
+ height: this.height,
62
+ }, this.config ? this.config : {});
63
+ // set toolbox configuration in parent chart and render new configurations
64
+ this._optionsService.setOption('toolbox', config);
65
+ }
66
+ _removeOption() {
67
+ this._optionsService.clearOption('toolbox');
68
+ }
69
+ _checkFormatterTemplate() {
70
+ var _a;
71
+ if (this.formatterTemplate) {
72
+ this.feature = Object.assign(Object.assign({}, this.feature), { dataView: Object.assign(Object.assign({}, (_a = this.feature) === null || _a === void 0 ? void 0 : _a.dataView), { optionToContent: this._optionToContentFormatter() }) });
73
+ }
74
+ }
75
+ _optionToContentFormatter() {
76
+ return () => {
77
+ this._changeDetectorRef.markForCheck();
78
+ return this._elementRef.nativeElement.innerHTML;
79
+ };
80
+ }
81
+ }
82
+ TdChartToolboxComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TdChartToolboxComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i1.TdChartOptionsService }], target: i0.ɵɵFactoryTarget.Component });
83
+ TdChartToolboxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: TdChartToolboxComponent, selector: "td-chart-toolbox", inputs: { config: "config", show: "show", trigger: "trigger", orient: "orient", itemSize: "itemSize", itemGap: "itemGap", showTitle: "showTitle", label: "label", feature: "feature", iconStyle: "iconStyle", zlevel: "zlevel", z: "z", transitionDuration: "transitionDuration", left: "left", top: "top", right: "right", bottom: "bottom", width: "width", height: "height" }, queries: [{ propertyName: "formatterTemplate", first: true, predicate: TdChartViewDataFormatterDirective, descendants: true, read: TemplateRef }], viewQueries: [{ propertyName: "fullTemplate", first: true, predicate: ["toolboxContent"], descendants: true, static: true }], usesOnChanges: true, ngImport: i0, template: "<ng-template\n #toolboxContent\n [ngTemplateOutlet]=\"formatterTemplate\"\n></ng-template>\n", directives: [{ type: i2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
84
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TdChartToolboxComponent, decorators: [{
85
+ type: Component,
86
+ args: [{ selector: 'td-chart-toolbox', changeDetection: ChangeDetectionStrategy.OnPush, template: "<ng-template\n #toolboxContent\n [ngTemplateOutlet]=\"formatterTemplate\"\n></ng-template>\n" }]
87
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i1.TdChartOptionsService }]; }, propDecorators: { config: [{
88
+ type: Input
89
+ }], show: [{
90
+ type: Input
91
+ }], trigger: [{
92
+ type: Input
93
+ }], orient: [{
94
+ type: Input
95
+ }], itemSize: [{
96
+ type: Input
97
+ }], itemGap: [{
98
+ type: Input
99
+ }], showTitle: [{
100
+ type: Input
101
+ }], label: [{
102
+ type: Input
103
+ }], feature: [{
104
+ type: Input
105
+ }], iconStyle: [{
106
+ type: Input
107
+ }], zlevel: [{
108
+ type: Input
109
+ }], z: [{
110
+ type: Input
111
+ }], transitionDuration: [{
112
+ type: Input
113
+ }], left: [{
114
+ type: Input
115
+ }], top: [{
116
+ type: Input
117
+ }], right: [{
118
+ type: Input
119
+ }], bottom: [{
120
+ type: Input
121
+ }], width: [{
122
+ type: Input
123
+ }], height: [{
124
+ type: Input
125
+ }], formatterTemplate: [{
126
+ type: ContentChild,
127
+ args: [TdChartViewDataFormatterDirective, { read: TemplateRef }]
128
+ }], fullTemplate: [{
129
+ type: ViewChild,
130
+ args: ['toolboxContent', { static: true }]
131
+ }] } });
132
+
133
+ const TOOLBOX_MODULE_COMPONENTS = [
134
+ TdChartToolboxComponent,
135
+ TdChartViewDataFormatterDirective,
136
+ ];
137
+ class CovalentToolboxEchartsModule {
138
+ }
139
+ CovalentToolboxEchartsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: CovalentToolboxEchartsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
140
+ CovalentToolboxEchartsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: CovalentToolboxEchartsModule, declarations: [TdChartToolboxComponent,
141
+ TdChartViewDataFormatterDirective], imports: [CommonModule], exports: [TdChartToolboxComponent,
142
+ TdChartViewDataFormatterDirective] });
143
+ CovalentToolboxEchartsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: CovalentToolboxEchartsModule, imports: [[CommonModule]] });
144
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: CovalentToolboxEchartsModule, decorators: [{
145
+ type: NgModule,
146
+ args: [{
147
+ imports: [CommonModule],
148
+ declarations: [TOOLBOX_MODULE_COMPONENTS],
149
+ exports: [TOOLBOX_MODULE_COMPONENTS],
150
+ }]
151
+ }] });
152
+
153
+ /**
154
+ * Generated bundle index. Do not edit.
155
+ */
156
+
157
+ export { CovalentToolboxEchartsModule, TOOLBOX_MODULE_COMPONENTS, TdChartToolboxComponent, TdChartViewDataFormatterDirective };
158
+ //# sourceMappingURL=covalent-echarts-toolbox.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"covalent-echarts-toolbox.mjs","sources":["../../../../libs/angular-echarts/toolbox/src/toolbox.component.ts","../../../../libs/angular-echarts/toolbox/src/toolbox.component.html","../../../../libs/angular-echarts/toolbox/src/toolbox.module.ts","../../../../libs/angular-echarts/toolbox/src/covalent-echarts-toolbox.ts"],"sourcesContent":["import {\n Component,\n Input,\n Directive,\n TemplateRef,\n ChangeDetectionStrategy,\n ElementRef,\n ChangeDetectorRef,\n OnChanges,\n ContentChild,\n ViewChild,\n OnDestroy,\n} from '@angular/core';\n\nimport {\n TdChartOptionsService,\n assignDefined,\n ITdLabel,\n ITdShadow,\n ITdItemStyle,\n TdTextPosition,\n TdTextAlign,\n} from '@covalent/echarts/base';\n\nexport type TdToolboxOrient = 'horizontal' | 'vertical';\nexport type TdImageType = 'png' | 'jpeg';\n\nexport interface ITdAcceptedBrushTypes {\n rect?: string;\n polygon?: string;\n lineX?: string;\n lineY?: string;\n keep?: string;\n clear?: string;\n}\n\nexport interface ITdAcceptedMagicTypes {\n line?: string;\n bar?: string;\n stack?: string;\n tiled?: string;\n}\n\nexport interface ITdToolboxIconEmphasis extends ITdItemStyle, ITdShadow {}\n\nexport interface ITdFeatureIconStyle extends ITdItemStyle, ITdShadow {\n textPosition?: TdTextPosition;\n textAlign?: TdTextAlign;\n emphasis?: ITdToolboxIconEmphasis;\n}\n\nexport interface ITdZoomTitles {\n zoom?: string;\n back?: string;\n}\n\nexport interface ITdSaveAsImage {\n type?: TdImageType;\n name?: string;\n backgroundColor?: any;\n excludeComponents?: string[]; // defaults to ['toolbox']\n show?: boolean;\n title?: string;\n icon?: string;\n iconStyle?: ITdFeatureIconStyle;\n pixelRatio?: number;\n}\n\nexport interface ITdRestore {\n show?: boolean;\n title?: string;\n icon?: string;\n iconStyle?: ITdFeatureIconStyle;\n}\n\nexport interface ITdDataView {\n show?: boolean;\n title?: string;\n icon?: string;\n iconStyle?: ITdFeatureIconStyle;\n readOnly?: boolean;\n optionToContent?: Function;\n contentToOption?: Function;\n lang?: string[]; // Defaults to Chinese, there are 3 names in data view, which are ['data view', 'turn off' and 'refresh'].\n textareaColor?: string;\n textareaBorderColor?: string;\n textColor?: string;\n buttonColor?: string;\n buttonTextColor?: string;\n}\n\nexport interface ITdDataZoom {\n show?: boolean;\n title?: ITdZoomTitles;\n icon?: ITdZoomTitles;\n iconStyle?: ITdFeatureIconStyle;\n xAxisIndex?: number | number[] | boolean;\n yAxisIndex?: number | number[] | boolean;\n}\n\nexport interface ITdMagicType {\n show?: boolean;\n type?: string[]; // only expects 'line' | 'bar' | 'stack' | 'tiled';\n title?: ITdAcceptedMagicTypes;\n icon?: ITdAcceptedMagicTypes;\n iconStyle?: ITdFeatureIconStyle;\n option?: {\n line?: object;\n bar?: object;\n stack?: object;\n tiled?: object;\n };\n seriesIndex?: {\n line?: any[];\n bar?: any[];\n stack?: any[];\n tiled?: any[];\n };\n}\n\nexport interface ITdBrush {\n type?: any[];\n icon?: ITdAcceptedBrushTypes;\n title?: ITdAcceptedBrushTypes;\n}\n\nexport interface ITdToolboxFeature {\n saveAsImage?: ITdSaveAsImage;\n restore?: ITdRestore;\n dataView?: ITdDataView;\n dataZoom?: ITdDataZoom;\n magicType?: ITdMagicType;\n brush?: ITdBrush;\n}\n\n@Directive({\n selector: 'ng-template[tdViewDataFormatter]',\n})\nexport class TdChartViewDataFormatterDirective {}\n\n@Component({\n selector: 'td-chart-toolbox',\n templateUrl: './toolbox.component.html',\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class TdChartToolboxComponent implements OnChanges, OnDestroy {\n private _state: any = {};\n\n @Input() config: any = {};\n\n @Input() show = true;\n @Input() trigger?: string;\n @Input() orient?: TdToolboxOrient;\n @Input() itemSize?: number;\n @Input() itemGap?: number;\n @Input() showTitle? = true;\n @Input() label?: ITdLabel;\n @Input() feature?: ITdToolboxFeature;\n @Input() iconStyle?: ITdFeatureIconStyle;\n @Input() zlevel?: number;\n @Input() z?: number;\n @Input() transitionDuration = 0.5;\n @Input() left: string | number = 'auto';\n @Input() top: string | number = 'auto';\n @Input() right: string | number = 'auto';\n @Input() bottom: string | number = 'auto';\n @Input() width: string | number = 'auto';\n @Input() height: string | number = 'auto';\n\n @ContentChild(TdChartViewDataFormatterDirective, { read: TemplateRef })\n formatterTemplate!: TemplateRef<any>;\n @ViewChild('toolboxContent', { static: true })\n fullTemplate!: TemplateRef<any>;\n\n constructor(\n private _changeDetectorRef: ChangeDetectorRef,\n private _elementRef: ElementRef,\n private _optionsService: TdChartOptionsService\n ) {}\n\n ngOnChanges(): void {\n this._setOptions();\n }\n\n ngOnDestroy(): void {\n this._removeOption();\n }\n\n private _setOptions(): void {\n this._checkFormatterTemplate();\n\n const config: any = assignDefined(\n this._state,\n {\n show: this.show,\n name: this.trigger,\n orient: this.orient,\n itemSize: this.itemSize,\n itemGap: this.itemGap,\n showTitle: this.showTitle,\n label: this.label,\n feature: this.feature,\n iconStyle: this.iconStyle,\n zlevel: this.zlevel,\n z: this.z,\n transitionDuration: this.transitionDuration,\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 },\n this.config ? this.config : {}\n );\n // set toolbox configuration in parent chart and render new configurations\n this._optionsService.setOption('toolbox', config);\n }\n\n private _removeOption(): void {\n this._optionsService.clearOption('toolbox');\n }\n\n private _checkFormatterTemplate(): void {\n if (this.formatterTemplate) {\n this.feature = {\n ...this.feature,\n dataView: {\n ...this.feature?.dataView,\n optionToContent: this._optionToContentFormatter(),\n },\n };\n }\n }\n\n private _optionToContentFormatter(): () => string {\n return () => {\n this._changeDetectorRef.markForCheck();\n return (<HTMLElement>this._elementRef.nativeElement).innerHTML;\n };\n }\n}\n","<ng-template\n #toolboxContent\n [ngTemplateOutlet]=\"formatterTemplate\"\n></ng-template>\n","import { NgModule, Type } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport {\n TdChartToolboxComponent,\n TdChartViewDataFormatterDirective,\n} from './toolbox.component';\n\nexport const TOOLBOX_MODULE_COMPONENTS: Type<any>[] = [\n TdChartToolboxComponent,\n TdChartViewDataFormatterDirective,\n];\n\n@NgModule({\n imports: [CommonModule],\n declarations: [TOOLBOX_MODULE_COMPONENTS],\n exports: [TOOLBOX_MODULE_COMPONENTS],\n})\nexport class CovalentToolboxEchartsModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":[],"mappings":";;;;;;;MA0Ia,iCAAiC;;8HAAjC,iCAAiC;kHAAjC,iCAAiC;2FAAjC,iCAAiC;kBAH7C,SAAS;mBAAC;oBACT,QAAQ,EAAE,kCAAkC;iBAC7C;;MAQY,uBAAuB;IA6BlC,YACU,kBAAqC,EACrC,WAAuB,EACvB,eAAsC;QAFtC,uBAAkB,GAAlB,kBAAkB,CAAmB;QACrC,gBAAW,GAAX,WAAW,CAAY;QACvB,oBAAe,GAAf,eAAe,CAAuB;QA/BxC,WAAM,GAAQ,EAAE,CAAC;QAEhB,WAAM,GAAQ,EAAE,CAAC;QAEjB,SAAI,GAAG,IAAI,CAAC;QAKZ,cAAS,GAAI,IAAI,CAAC;QAMlB,uBAAkB,GAAG,GAAG,CAAC;QACzB,SAAI,GAAoB,MAAM,CAAC;QAC/B,QAAG,GAAoB,MAAM,CAAC;QAC9B,UAAK,GAAoB,MAAM,CAAC;QAChC,WAAM,GAAoB,MAAM,CAAC;QACjC,UAAK,GAAoB,MAAM,CAAC;QAChC,WAAM,GAAoB,MAAM,CAAC;KAWtC;IAEJ,WAAW;QACT,IAAI,CAAC,WAAW,EAAE,CAAC;KACpB;IAED,WAAW;QACT,IAAI,CAAC,aAAa,EAAE,CAAC;KACtB;IAEO,WAAW;QACjB,IAAI,CAAC,uBAAuB,EAAE,CAAC;QAE/B,MAAM,MAAM,GAAQ,aAAa,CAC/B,IAAI,CAAC,MAAM,EACX;YACE,IAAI,EAAE,IAAI,CAAC,IAAI;YACf,IAAI,EAAE,IAAI,CAAC,OAAO;YAClB,MAAM,EAAE,IAAI,CAAC,MAAM;YACnB,QAAQ,EAAE,IAAI,CAAC,QAAQ;YACvB,OAAO,EAAE,IAAI,CAAC,OAAO;YACrB,SAAS,EAAE,IAAI,CAAC,SAAS;YACzB,KAAK,EAAE,IAAI,CAAC,KAAK;YACjB,OAAO,EAAE,IAAI,CAAC,OAAO;YACrB,SAAS,EAAE,IAAI,CAAC,SAAS;YACzB,MAAM,EAAE,IAAI,CAAC,MAAM;YACnB,CAAC,EAAE,IAAI,CAAC,CAAC;YACT,kBAAkB,EAAE,IAAI,CAAC,kBAAkB;YAC3C,IAAI,EAAE,IAAI,CAAC,IAAI;YACf,GAAG,EAAE,IAAI,CAAC,GAAG;YACb,KAAK,EAAE,IAAI,CAAC,KAAK;YACjB,MAAM,EAAE,IAAI,CAAC,MAAM;YACnB,KAAK,EAAE,IAAI,CAAC,KAAK;YACjB,MAAM,EAAE,IAAI,CAAC,MAAM;SACpB,EACD,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,GAAG,EAAE,CAC/B,CAAC;;QAEF,IAAI,CAAC,eAAe,CAAC,SAAS,CAAC,SAAS,EAAE,MAAM,CAAC,CAAC;KACnD;IAEO,aAAa;QACnB,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,SAAS,CAAC,CAAC;KAC7C;IAEO,uBAAuB;;QAC7B,IAAI,IAAI,CAAC,iBAAiB,EAAE;YAC1B,IAAI,CAAC,OAAO,mCACP,IAAI,CAAC,OAAO,KACf,QAAQ,kCACH,MAAA,IAAI,CAAC,OAAO,0CAAE,QAAQ,KACzB,eAAe,EAAE,IAAI,CAAC,yBAAyB,EAAE,MAEpD,CAAC;SACH;KACF;IAEO,yBAAyB;QAC/B,OAAO;YACL,IAAI,CAAC,kBAAkB,CAAC,YAAY,EAAE,CAAC;YACvC,OAAqB,IAAI,CAAC,WAAW,CAAC,aAAc,CAAC,SAAS,CAAC;SAChE,CAAC;KACH;;oHA/FU,uBAAuB;wGAAvB,uBAAuB,ydAwBpB,iCAAiC,2BAAU,WAAW,gLCzKtE,gGAIA;2FD6Ia,uBAAuB;kBALnC,SAAS;+BACE,kBAAkB,mBAEX,uBAAuB,CAAC,MAAM;qKAKtC,MAAM;sBAAd,KAAK;gBAEG,IAAI;sBAAZ,KAAK;gBACG,OAAO;sBAAf,KAAK;gBACG,MAAM;sBAAd,KAAK;gBACG,QAAQ;sBAAhB,KAAK;gBACG,OAAO;sBAAf,KAAK;gBACG,SAAS;sBAAjB,KAAK;gBACG,KAAK;sBAAb,KAAK;gBACG,OAAO;sBAAf,KAAK;gBACG,SAAS;sBAAjB,KAAK;gBACG,MAAM;sBAAd,KAAK;gBACG,CAAC;sBAAT,KAAK;gBACG,kBAAkB;sBAA1B,KAAK;gBACG,IAAI;sBAAZ,KAAK;gBACG,GAAG;sBAAX,KAAK;gBACG,KAAK;sBAAb,KAAK;gBACG,MAAM;sBAAd,KAAK;gBACG,KAAK;sBAAb,KAAK;gBACG,MAAM;sBAAd,KAAK;gBAGN,iBAAiB;sBADhB,YAAY;uBAAC,iCAAiC,EAAE,EAAE,IAAI,EAAE,WAAW,EAAE;gBAGtE,YAAY;sBADX,SAAS;uBAAC,gBAAgB,EAAE,EAAE,MAAM,EAAE,IAAI,EAAE;;;MEnKlC,yBAAyB,GAAgB;IACpD,uBAAuB;IACvB,iCAAiC;EACjC;MAOW,4BAA4B;;yHAA5B,4BAA4B;0HAA5B,4BAA4B,iBATvC,uBAAuB;QACvB,iCAAiC,aAIvB,YAAY,aALtB,uBAAuB;QACvB,iCAAiC;0HAQtB,4BAA4B,YAJ9B,CAAC,YAAY,CAAC;2FAIZ,4BAA4B;kBALxC,QAAQ;mBAAC;oBACR,OAAO,EAAE,CAAC,YAAY,CAAC;oBACvB,YAAY,EAAE,CAAC,yBAAyB,CAAC;oBACzC,OAAO,EAAE,CAAC,yBAAyB,CAAC;iBACrC;;;ACjBD;;;;;;"}
@@ -0,0 +1,283 @@
1
+ import * as i0 from '@angular/core';
2
+ import { Directive, TemplateRef, Component, ChangeDetectionStrategy, Input, ContentChild, ViewChild, NgModule } from '@angular/core';
3
+ import * as i2 from '@angular/common';
4
+ import { CommonModule } from '@angular/common';
5
+ import * as i1 from '@covalent/echarts/base';
6
+ import { assignDefined } from '@covalent/echarts/base';
7
+
8
+ class TdTooltipContext {
9
+ }
10
+ class TdChartTooltipFormatterDirective {
11
+ }
12
+ TdChartTooltipFormatterDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TdChartTooltipFormatterDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
13
+ TdChartTooltipFormatterDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.2.2", type: TdChartTooltipFormatterDirective, selector: "ng-template[tdTooltipFormatter]", ngImport: i0 });
14
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TdChartTooltipFormatterDirective, decorators: [{
15
+ type: Directive,
16
+ args: [{
17
+ selector: 'ng-template[tdTooltipFormatter]',
18
+ }]
19
+ }] });
20
+ class TdChartTooltipComponent {
21
+ constructor(_changeDetectorRef, _elementRef, _optionsService) {
22
+ this._changeDetectorRef = _changeDetectorRef;
23
+ this._elementRef = _elementRef;
24
+ this._optionsService = _optionsService;
25
+ this._state = {};
26
+ this._context = new TdTooltipContext();
27
+ this.config = {};
28
+ this.show = true;
29
+ this.trigger = 'axis';
30
+ this.showContent = true;
31
+ this.alwaysShowContent = false;
32
+ this.triggerOn = 'mousemove|click';
33
+ this.showDelay = 0;
34
+ this.hideDelay = 0;
35
+ this.enterable = false;
36
+ this.confine = false;
37
+ this.transitionDuration = 0.5;
38
+ this.backgroundColor = 'rgba(50,50,50,0.7)'; // series
39
+ this.borderColor = '#333'; // series
40
+ this.borderWidth = 0; // series
41
+ this.padding = 5; // series
42
+ this.textStyle = {
43
+ // series
44
+ color: '#FFF',
45
+ };
46
+ }
47
+ ngOnChanges() {
48
+ this._setOptions();
49
+ }
50
+ ngOnDestroy() {
51
+ this._removeOption();
52
+ }
53
+ _setOptions() {
54
+ const config = assignDefined(this._state, {
55
+ show: this.show,
56
+ trigger: this.trigger,
57
+ axisPointer: this.axisPointer,
58
+ showContent: this.showContent,
59
+ alwaysShowContent: this.alwaysShowContent,
60
+ triggerOn: this.triggerOn,
61
+ showDelay: this.showDelay,
62
+ hideDelay: this.hideDelay,
63
+ enterable: this.enterable,
64
+ confine: this.confine,
65
+ transitionDuration: this.transitionDuration,
66
+ position: this.position,
67
+ formatter: this.formatter
68
+ ? this.formatter
69
+ : this.formatterTemplate
70
+ ? this._formatter()
71
+ : undefined,
72
+ backgroundColor: this.backgroundColor,
73
+ borderColor: this.borderColor,
74
+ borderWidth: this.borderWidth,
75
+ padding: this.padding,
76
+ textStyle: this.textStyle,
77
+ extraCssText: this.extraCssText,
78
+ }, this.config ? this.config : {});
79
+ // set tooltip configuration in parent chart and render new configurations
80
+ this._optionsService.setOption('tooltip', config);
81
+ }
82
+ _removeOption() {
83
+ this._optionsService.clearOption('tooltip');
84
+ }
85
+ _formatter() {
86
+ return (params, ticket, callback) => {
87
+ this._context = {
88
+ $implicit: params,
89
+ ticket,
90
+ };
91
+ // timeout set since we need to set the HTML at the end of the angular lifecycle when
92
+ // the tooltip delay is more than 0
93
+ setTimeout(() => {
94
+ callback(ticket, this._elementRef.nativeElement.innerHTML);
95
+ });
96
+ this._changeDetectorRef.markForCheck();
97
+ return this._elementRef.nativeElement.innerHTML;
98
+ };
99
+ }
100
+ }
101
+ TdChartTooltipComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TdChartTooltipComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i1.TdChartOptionsService }], target: i0.ɵɵFactoryTarget.Component });
102
+ TdChartTooltipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: TdChartTooltipComponent, selector: "td-chart-tooltip", inputs: { config: "config", show: "show", trigger: "trigger", axisPointer: "axisPointer", showContent: "showContent", alwaysShowContent: "alwaysShowContent", triggerOn: "triggerOn", showDelay: "showDelay", hideDelay: "hideDelay", enterable: "enterable", renderMode: "renderMode", confine: "confine", transitionDuration: "transitionDuration", position: "position", formatter: "formatter", backgroundColor: "backgroundColor", borderColor: "borderColor", borderWidth: "borderWidth", padding: "padding", textStyle: "textStyle", extraCssText: "extraCssText" }, queries: [{ propertyName: "formatterTemplate", first: true, predicate: TdChartTooltipFormatterDirective, descendants: true, read: TemplateRef, static: true }], viewQueries: [{ propertyName: "fullTemplate", first: true, predicate: ["tooltipContent"], descendants: true, static: true }], usesOnChanges: true, ngImport: i0, template: "<ng-template\n #tooltipContent\n [ngTemplateOutlet]=\"formatterTemplate\"\n [ngTemplateOutletContext]=\"_context\"\n></ng-template>\n", directives: [{ type: i2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
103
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TdChartTooltipComponent, decorators: [{
104
+ type: Component,
105
+ args: [{ selector: 'td-chart-tooltip', changeDetection: ChangeDetectionStrategy.OnPush, template: "<ng-template\n #tooltipContent\n [ngTemplateOutlet]=\"formatterTemplate\"\n [ngTemplateOutletContext]=\"_context\"\n></ng-template>\n" }]
106
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i1.TdChartOptionsService }]; }, propDecorators: { config: [{
107
+ type: Input
108
+ }], show: [{
109
+ type: Input
110
+ }], trigger: [{
111
+ type: Input
112
+ }], axisPointer: [{
113
+ type: Input
114
+ }], showContent: [{
115
+ type: Input
116
+ }], alwaysShowContent: [{
117
+ type: Input
118
+ }], triggerOn: [{
119
+ type: Input
120
+ }], showDelay: [{
121
+ type: Input
122
+ }], hideDelay: [{
123
+ type: Input
124
+ }], enterable: [{
125
+ type: Input
126
+ }], renderMode: [{
127
+ type: Input
128
+ }], confine: [{
129
+ type: Input
130
+ }], transitionDuration: [{
131
+ type: Input
132
+ }], position: [{
133
+ type: Input
134
+ }], formatter: [{
135
+ type: Input
136
+ }], backgroundColor: [{
137
+ type: Input
138
+ }], borderColor: [{
139
+ type: Input
140
+ }], borderWidth: [{
141
+ type: Input
142
+ }], padding: [{
143
+ type: Input
144
+ }], textStyle: [{
145
+ type: Input
146
+ }], extraCssText: [{
147
+ type: Input
148
+ }], formatterTemplate: [{
149
+ type: ContentChild,
150
+ args: [TdChartTooltipFormatterDirective, {
151
+ read: TemplateRef,
152
+ static: true,
153
+ }]
154
+ }], fullTemplate: [{
155
+ type: ViewChild,
156
+ args: ['tooltipContent', { static: true }]
157
+ }] } });
158
+
159
+ class TdSeriesTooltipComponent {
160
+ constructor(_changeDetectorRef, _elementRef, _seriesComponent) {
161
+ this._changeDetectorRef = _changeDetectorRef;
162
+ this._elementRef = _elementRef;
163
+ this._seriesComponent = _seriesComponent;
164
+ this._state = {};
165
+ this._context = new TdTooltipContext();
166
+ this.backgroundColor = 'rgba(50,50,50,0.7)';
167
+ this.borderColor = '#333';
168
+ this.borderWidth = 0;
169
+ this.padding = 5;
170
+ this.textStyle = {
171
+ color: '#FFF',
172
+ };
173
+ }
174
+ ngOnChanges() {
175
+ this._setOptions();
176
+ }
177
+ ngOnDestroy() {
178
+ this._removeOption();
179
+ }
180
+ _setOptions() {
181
+ const config = assignDefined(this._state, {
182
+ position: this.position,
183
+ backgroundColor: this.backgroundColor,
184
+ borderColor: this.borderColor,
185
+ borderWidth: this.borderWidth,
186
+ padding: this.padding,
187
+ textStyle: this.textStyle,
188
+ extraCssText: this.extraCssText,
189
+ formatter: this.formatter
190
+ ? this.formatter
191
+ : this.formatterTemplate
192
+ ? this._formatter()
193
+ : undefined,
194
+ }, this.config ? this.config : {});
195
+ // set series tooltip configuration in parent chart and render new configurations
196
+ this._seriesComponent.setStateOption('tooltip', config);
197
+ }
198
+ /**
199
+ * Formatter for tooltip
200
+ *
201
+ */
202
+ _formatter() {
203
+ return (params, ticket, callback) => {
204
+ this._context = {
205
+ $implicit: params,
206
+ ticket,
207
+ };
208
+ // timeout set since we need to set the HTML at the end of the angular lifecycle when
209
+ // the tooltip delay is more than 0
210
+ setTimeout(() => {
211
+ callback(ticket, this._elementRef.nativeElement.innerHTML);
212
+ });
213
+ this._changeDetectorRef.markForCheck();
214
+ return this._elementRef.nativeElement.innerHTML;
215
+ };
216
+ }
217
+ _removeOption() {
218
+ this._seriesComponent.removeStateOption('tooltip');
219
+ }
220
+ }
221
+ TdSeriesTooltipComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TdSeriesTooltipComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i1.TdSeriesDirective }], target: i0.ɵɵFactoryTarget.Component });
222
+ TdSeriesTooltipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: TdSeriesTooltipComponent, selector: "td-chart-series-tooltip", inputs: { config: "config", formatter: "formatter", position: "position", backgroundColor: "backgroundColor", borderColor: "borderColor", borderWidth: "borderWidth", padding: "padding", textStyle: "textStyle", extraCssText: "extraCssText" }, queries: [{ propertyName: "formatterTemplate", first: true, predicate: TdChartTooltipFormatterDirective, descendants: true, read: TemplateRef, static: true }], viewQueries: [{ propertyName: "fullTemplate", first: true, predicate: ["tooltipContent"], descendants: true, static: true }], usesOnChanges: true, ngImport: i0, template: "<ng-template\n #tooltipContent\n [ngTemplateOutlet]=\"formatterTemplate\"\n [ngTemplateOutletContext]=\"_context\"\n></ng-template>\n", directives: [{ type: i2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
223
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TdSeriesTooltipComponent, decorators: [{
224
+ type: Component,
225
+ args: [{ selector: 'td-chart-series-tooltip', changeDetection: ChangeDetectionStrategy.OnPush, template: "<ng-template\n #tooltipContent\n [ngTemplateOutlet]=\"formatterTemplate\"\n [ngTemplateOutletContext]=\"_context\"\n></ng-template>\n" }]
226
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i1.TdSeriesDirective }]; }, propDecorators: { config: [{
227
+ type: Input
228
+ }], formatter: [{
229
+ type: Input
230
+ }], position: [{
231
+ type: Input
232
+ }], backgroundColor: [{
233
+ type: Input
234
+ }], borderColor: [{
235
+ type: Input
236
+ }], borderWidth: [{
237
+ type: Input
238
+ }], padding: [{
239
+ type: Input
240
+ }], textStyle: [{
241
+ type: Input
242
+ }], extraCssText: [{
243
+ type: Input
244
+ }], formatterTemplate: [{
245
+ type: ContentChild,
246
+ args: [TdChartTooltipFormatterDirective, {
247
+ read: TemplateRef,
248
+ static: true,
249
+ }]
250
+ }], fullTemplate: [{
251
+ type: ViewChild,
252
+ args: ['tooltipContent', { static: true }]
253
+ }] } });
254
+
255
+ const TOOLTIP_MODULE_COMPONENTS = [
256
+ TdChartTooltipComponent,
257
+ TdChartTooltipFormatterDirective,
258
+ TdSeriesTooltipComponent,
259
+ ];
260
+ class CovalentTooltipEchartsModule {
261
+ }
262
+ CovalentTooltipEchartsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: CovalentTooltipEchartsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
263
+ CovalentTooltipEchartsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: CovalentTooltipEchartsModule, declarations: [TdChartTooltipComponent,
264
+ TdChartTooltipFormatterDirective,
265
+ TdSeriesTooltipComponent], imports: [CommonModule], exports: [TdChartTooltipComponent,
266
+ TdChartTooltipFormatterDirective,
267
+ TdSeriesTooltipComponent] });
268
+ CovalentTooltipEchartsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: CovalentTooltipEchartsModule, imports: [[CommonModule]] });
269
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: CovalentTooltipEchartsModule, decorators: [{
270
+ type: NgModule,
271
+ args: [{
272
+ imports: [CommonModule],
273
+ declarations: [TOOLTIP_MODULE_COMPONENTS],
274
+ exports: [TOOLTIP_MODULE_COMPONENTS],
275
+ }]
276
+ }] });
277
+
278
+ /**
279
+ * Generated bundle index. Do not edit.
280
+ */
281
+
282
+ export { CovalentTooltipEchartsModule, TOOLTIP_MODULE_COMPONENTS, TdChartTooltipComponent, TdChartTooltipFormatterDirective, TdSeriesTooltipComponent, TdTooltipContext };
283
+ //# sourceMappingURL=covalent-echarts-tooltip.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"covalent-echarts-tooltip.mjs","sources":["../../../../libs/angular-echarts/tooltip/src/tooltip.component.ts","../../../../libs/angular-echarts/tooltip/src/tooltip.component.html","../../../../libs/angular-echarts/tooltip/src/series-tooltip.component.ts","../../../../libs/angular-echarts/tooltip/src/tooltip.module.ts","../../../../libs/angular-echarts/tooltip/src/covalent-echarts-tooltip.ts"],"sourcesContent":["import {\n Component,\n Input,\n Directive,\n TemplateRef,\n ChangeDetectionStrategy,\n ElementRef,\n ChangeDetectorRef,\n OnChanges,\n ContentChild,\n ViewChild,\n OnDestroy,\n} from '@angular/core';\n\nimport {\n TdChartOptionsService,\n assignDefined,\n TdTooltipTrigger,\n TdTooltipTriggerOn,\n TdTooltipPosition,\n} from '@covalent/echarts/base';\n\nexport class TdTooltipContext {\n $implicit: any;\n ticket!: string;\n}\n\n@Directive({\n selector: 'ng-template[tdTooltipFormatter]',\n})\nexport class TdChartTooltipFormatterDirective {}\n\n@Component({\n selector: 'td-chart-tooltip',\n templateUrl: './tooltip.component.html',\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class TdChartTooltipComponent implements OnChanges, OnDestroy {\n private _state: any = {};\n\n _context: TdTooltipContext = new TdTooltipContext();\n\n @Input() config: any = {};\n\n @Input() show? = true;\n @Input() trigger?: TdTooltipTrigger = 'axis';\n @Input() axisPointer: any;\n @Input() showContent? = true;\n @Input() alwaysShowContent? = false;\n @Input() triggerOn?: TdTooltipTriggerOn = 'mousemove|click';\n @Input() showDelay? = 0;\n @Input() hideDelay? = 0;\n @Input() enterable? = false;\n @Input() renderMode?: 'html' | 'richText';\n @Input() confine = false;\n @Input() transitionDuration = 0.5;\n @Input() position?: TdTooltipPosition; // series\n @Input() formatter?: string | Function; // series\n @Input() backgroundColor? = 'rgba(50,50,50,0.7)'; // series\n @Input() borderColor? = '#333'; // series\n @Input() borderWidth? = 0; // series\n @Input() padding? = 5; // series\n @Input() textStyle: any = {\n // series\n color: '#FFF',\n };\n @Input() extraCssText?: string; // series\n\n @ContentChild(TdChartTooltipFormatterDirective, {\n read: TemplateRef,\n static: true,\n })\n formatterTemplate!: TemplateRef<any>;\n @ViewChild('tooltipContent', { static: true })\n fullTemplate!: TemplateRef<any>;\n\n constructor(\n private _changeDetectorRef: ChangeDetectorRef,\n private _elementRef: ElementRef,\n private _optionsService: TdChartOptionsService\n ) {}\n\n ngOnChanges(): void {\n this._setOptions();\n }\n\n ngOnDestroy(): void {\n this._removeOption();\n }\n\n private _setOptions(): void {\n const config: any = assignDefined(\n this._state,\n {\n show: this.show,\n trigger: this.trigger,\n axisPointer: this.axisPointer,\n showContent: this.showContent,\n alwaysShowContent: this.alwaysShowContent,\n triggerOn: this.triggerOn,\n showDelay: this.showDelay,\n hideDelay: this.hideDelay,\n enterable: this.enterable,\n confine: this.confine,\n transitionDuration: this.transitionDuration,\n position: this.position,\n formatter: this.formatter\n ? this.formatter\n : this.formatterTemplate\n ? this._formatter()\n : undefined,\n backgroundColor: this.backgroundColor,\n borderColor: this.borderColor,\n borderWidth: this.borderWidth,\n padding: this.padding,\n textStyle: this.textStyle,\n extraCssText: this.extraCssText,\n },\n this.config ? this.config : {}\n );\n // set tooltip configuration in parent chart and render new configurations\n this._optionsService.setOption('tooltip', config);\n }\n\n private _removeOption(): void {\n this._optionsService.clearOption('tooltip');\n }\n\n private _formatter(): (\n params: any,\n ticket: any,\n callback: (ticket: string, html: string) => void\n ) => string {\n return (\n params: any,\n ticket: any,\n callback: (ticket: string, html: string) => void\n ) => {\n this._context = {\n $implicit: params,\n ticket,\n };\n // timeout set since we need to set the HTML at the end of the angular lifecycle when\n // the tooltip delay is more than 0\n setTimeout(() => {\n callback(\n ticket,\n (<HTMLElement>this._elementRef.nativeElement).innerHTML\n );\n });\n this._changeDetectorRef.markForCheck();\n return (<HTMLElement>this._elementRef.nativeElement).innerHTML;\n };\n }\n}\n","<ng-template\n #tooltipContent\n [ngTemplateOutlet]=\"formatterTemplate\"\n [ngTemplateOutletContext]=\"_context\"\n></ng-template>\n","import {\n Component,\n Input,\n ContentChild,\n ViewChild,\n TemplateRef,\n ChangeDetectorRef,\n ElementRef,\n ChangeDetectionStrategy,\n OnChanges,\n OnDestroy,\n} from '@angular/core';\n\nimport { assignDefined, TdSeriesDirective } from '@covalent/echarts/base';\n\nimport {\n TdChartTooltipFormatterDirective,\n TdTooltipContext,\n} from './tooltip.component';\n\n@Component({\n selector: 'td-chart-series-tooltip',\n templateUrl: './tooltip.component.html',\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class TdSeriesTooltipComponent implements OnChanges, OnDestroy {\n private _state: any = {};\n\n _context: TdTooltipContext = new TdTooltipContext();\n\n @Input() config?: any;\n\n @Input() formatter?: any;\n // Parent tooltip trigger must be set to 'item' to render these properties\n @Input() position?: string | string[] | number[];\n @Input() backgroundColor? = 'rgba(50,50,50,0.7)';\n @Input() borderColor? = '#333';\n @Input() borderWidth? = 0;\n @Input() padding? = 5;\n @Input() textStyle? = {\n color: '#FFF',\n };\n @Input() extraCssText?: string;\n\n @ContentChild(TdChartTooltipFormatterDirective, {\n read: TemplateRef,\n static: true,\n })\n formatterTemplate!: TemplateRef<any>;\n @ViewChild('tooltipContent', { static: true })\n fullTemplate!: TemplateRef<any>;\n\n constructor(\n private _changeDetectorRef: ChangeDetectorRef,\n private _elementRef: ElementRef,\n private _seriesComponent: TdSeriesDirective\n ) {}\n\n ngOnChanges(): void {\n this._setOptions();\n }\n\n ngOnDestroy(): void {\n this._removeOption();\n }\n\n private _setOptions(): void {\n const config: any = assignDefined(\n this._state,\n {\n position: this.position,\n backgroundColor: this.backgroundColor,\n borderColor: this.borderColor,\n borderWidth: this.borderWidth,\n padding: this.padding,\n textStyle: this.textStyle,\n extraCssText: this.extraCssText,\n formatter: this.formatter\n ? this.formatter\n : this.formatterTemplate\n ? this._formatter()\n : undefined,\n },\n this.config ? this.config : {}\n );\n // set series tooltip configuration in parent chart and render new configurations\n this._seriesComponent.setStateOption('tooltip', config);\n }\n\n /**\n * Formatter for tooltip\n *\n */\n private _formatter(): (\n params: any,\n ticket: any,\n callback: (ticket: string, html: string) => void\n ) => string {\n return (\n params: any,\n ticket: any,\n callback: (ticket: string, html: string) => void\n ) => {\n this._context = {\n $implicit: params,\n ticket,\n };\n // timeout set since we need to set the HTML at the end of the angular lifecycle when\n // the tooltip delay is more than 0\n setTimeout(() => {\n callback(\n ticket,\n (<HTMLElement>this._elementRef.nativeElement).innerHTML\n );\n });\n this._changeDetectorRef.markForCheck();\n return (<HTMLElement>this._elementRef.nativeElement).innerHTML;\n };\n }\n\n private _removeOption(): void {\n this._seriesComponent.removeStateOption('tooltip');\n }\n}\n","import { NgModule, Type } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport {\n TdChartTooltipComponent,\n TdChartTooltipFormatterDirective,\n} from './tooltip.component';\nimport { TdSeriesTooltipComponent } from './series-tooltip.component';\n\nexport const TOOLTIP_MODULE_COMPONENTS: Type<any>[] = [\n TdChartTooltipComponent,\n TdChartTooltipFormatterDirective,\n TdSeriesTooltipComponent,\n];\n\n@NgModule({\n imports: [CommonModule],\n declarations: [TOOLTIP_MODULE_COMPONENTS],\n exports: [TOOLTIP_MODULE_COMPONENTS],\n})\nexport class CovalentTooltipEchartsModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":[],"mappings":"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"}
@@ -0,0 +1,140 @@
1
+ import * as i0 from '@angular/core';
2
+ import { forwardRef, Component, ChangeDetectionStrategy, Input, NgModule } from '@angular/core';
3
+ import { CommonModule } from '@angular/common';
4
+ import * as i1 from '@covalent/echarts/base';
5
+ import { TdSeriesDirective } from '@covalent/echarts/base';
6
+
7
+ class TdChartSeriesTreeComponent extends TdSeriesDirective {
8
+ constructor(_optionsService) {
9
+ super('tree', _optionsService);
10
+ }
11
+ getConfig() {
12
+ return {
13
+ zlevel: this.zlevel,
14
+ z: this.z,
15
+ left: this.left,
16
+ top: this.top,
17
+ right: this.right,
18
+ bottom: this.bottom,
19
+ width: this.width,
20
+ height: this.height,
21
+ layout: this.layout,
22
+ orient: this.orient,
23
+ symbol: this.symbol,
24
+ symbolSize: this.symbolSize,
25
+ symbolRotate: this.symbolRotate,
26
+ symbolKeepAspect: this.symbolKeepAspect,
27
+ roam: this.roam,
28
+ expandAndCollapse: this.expandAndCollapse,
29
+ initialTreeDepth: this.initialTreeDepth,
30
+ itemStyle: this.itemStyle,
31
+ label: this.label,
32
+ lineStyle: this.lineStyle,
33
+ leaves: this.leaves,
34
+ emphasis: this.emphasis,
35
+ };
36
+ }
37
+ }
38
+ TdChartSeriesTreeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TdChartSeriesTreeComponent, deps: [{ token: i1.TdChartOptionsService }], target: i0.ɵɵFactoryTarget.Component });
39
+ TdChartSeriesTreeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: TdChartSeriesTreeComponent, selector: "td-chart-series[td-tree]", inputs: { config: "config", id: "id", name: "name", color: "color", data: "data", animation: "animation", animationThreshold: "animationThreshold", animationDuration: "animationDuration", animationEasing: "animationEasing", animationDelay: "animationDelay", animationDurationUpdate: "animationDurationUpdate", animationEasingUpdate: "animationEasingUpdate", animationDelayUpdate: "animationDelayUpdate", tooltip: "tooltip", zlevel: "zlevel", z: "z", left: "left", top: "top", right: "right", bottom: "bottom", width: "width", height: "height", layout: "layout", orient: "orient", symbol: "symbol", symbolSize: "symbolSize", symbolRotate: "symbolRotate", symbolKeepAspect: "symbolKeepAspect", roam: "roam", expandAndCollapse: "expandAndCollapse", initialTreeDepth: "initialTreeDepth", itemStyle: "itemStyle", label: "label", lineStyle: "lineStyle", leaves: "leaves", emphasis: "emphasis" }, providers: [
40
+ {
41
+ provide: TdSeriesDirective,
42
+ useExisting: forwardRef(() => TdChartSeriesTreeComponent),
43
+ },
44
+ ], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
45
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TdChartSeriesTreeComponent, decorators: [{
46
+ type: Component,
47
+ args: [{
48
+ selector: 'td-chart-series[td-tree]',
49
+ template: '',
50
+ changeDetection: ChangeDetectionStrategy.OnPush,
51
+ inputs: [
52
+ 'config',
53
+ 'id',
54
+ 'name',
55
+ 'color',
56
+ 'data',
57
+ 'animation',
58
+ 'animationThreshold',
59
+ 'animationDuration',
60
+ 'animationEasing',
61
+ 'animationDelay',
62
+ 'animationDurationUpdate',
63
+ 'animationEasingUpdate',
64
+ 'animationDelayUpdate',
65
+ 'tooltip',
66
+ ],
67
+ providers: [
68
+ {
69
+ provide: TdSeriesDirective,
70
+ useExisting: forwardRef(() => TdChartSeriesTreeComponent),
71
+ },
72
+ ],
73
+ }]
74
+ }], ctorParameters: function () { return [{ type: i1.TdChartOptionsService }]; }, propDecorators: { zlevel: [{
75
+ type: Input
76
+ }], z: [{
77
+ type: Input
78
+ }], left: [{
79
+ type: Input
80
+ }], top: [{
81
+ type: Input
82
+ }], right: [{
83
+ type: Input
84
+ }], bottom: [{
85
+ type: Input
86
+ }], width: [{
87
+ type: Input
88
+ }], height: [{
89
+ type: Input
90
+ }], layout: [{
91
+ type: Input
92
+ }], orient: [{
93
+ type: Input
94
+ }], symbol: [{
95
+ type: Input
96
+ }], symbolSize: [{
97
+ type: Input
98
+ }], symbolRotate: [{
99
+ type: Input
100
+ }], symbolKeepAspect: [{
101
+ type: Input
102
+ }], roam: [{
103
+ type: Input
104
+ }], expandAndCollapse: [{
105
+ type: Input
106
+ }], initialTreeDepth: [{
107
+ type: Input
108
+ }], itemStyle: [{
109
+ type: Input
110
+ }], label: [{
111
+ type: Input
112
+ }], lineStyle: [{
113
+ type: Input
114
+ }], leaves: [{
115
+ type: Input
116
+ }], emphasis: [{
117
+ type: Input
118
+ }] } });
119
+
120
+ const TREE_MODULE_COMPONENTS = [TdChartSeriesTreeComponent];
121
+ class CovalentTreeEchartsModule {
122
+ }
123
+ CovalentTreeEchartsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: CovalentTreeEchartsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
124
+ CovalentTreeEchartsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: CovalentTreeEchartsModule, declarations: [TdChartSeriesTreeComponent], imports: [CommonModule], exports: [TdChartSeriesTreeComponent] });
125
+ CovalentTreeEchartsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: CovalentTreeEchartsModule, imports: [[CommonModule]] });
126
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: CovalentTreeEchartsModule, decorators: [{
127
+ type: NgModule,
128
+ args: [{
129
+ imports: [CommonModule],
130
+ declarations: [TREE_MODULE_COMPONENTS],
131
+ exports: [TREE_MODULE_COMPONENTS],
132
+ }]
133
+ }] });
134
+
135
+ /**
136
+ * Generated bundle index. Do not edit.
137
+ */
138
+
139
+ export { CovalentTreeEchartsModule, TREE_MODULE_COMPONENTS, TdChartSeriesTreeComponent };
140
+ //# sourceMappingURL=covalent-echarts-tree.mjs.map