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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (386) hide show
  1. package/bar/bar.component.d.ts +3 -0
  2. package/bar/bar.module.d.ts +6 -1
  3. package/bar/covalent-echarts-bar.d.ts +1 -0
  4. package/bar/package.json +6 -7
  5. package/base/axis/axis.component.d.ts +3 -0
  6. package/base/axis/x-axis.component.d.ts +3 -0
  7. package/base/axis/y-axis.component.d.ts +3 -0
  8. package/base/base.module.d.ts +9 -1
  9. package/base/chart-options.service.d.ts +3 -0
  10. package/base/chart.component.d.ts +3 -0
  11. package/base/covalent-echarts-base.d.ts +1 -1
  12. package/base/dataset/dataset.component.d.ts +3 -0
  13. package/base/package.json +6 -7
  14. package/base/series/series.component.d.ts +3 -0
  15. package/covalent-echarts.d.ts +1 -0
  16. package/esm2020/bar/bar.component.mjs +136 -0
  17. package/esm2020/bar/bar.module.mjs +20 -0
  18. package/esm2020/bar/covalent-echarts-bar.mjs +5 -0
  19. package/esm2020/bar/index.mjs +2 -0
  20. package/esm2020/bar/public-api.mjs +3 -0
  21. package/esm2020/base/axis/axis.component.mjs +127 -0
  22. package/esm2020/base/axis/axis.interface.mjs +2 -0
  23. package/esm2020/base/axis/x-axis.component.mjs +55 -0
  24. package/esm2020/base/axis/y-axis.component.mjs +55 -0
  25. package/esm2020/base/base.module.mjs +36 -0
  26. package/esm2020/base/base.types.mjs +2 -0
  27. package/esm2020/base/chart-options.service.mjs +65 -0
  28. package/esm2020/base/chart.component.mjs +191 -0
  29. package/esm2020/base/covalent-echarts-base.mjs +5 -0
  30. package/esm2020/base/dataset/dataset.component.mjs +52 -0
  31. package/esm2020/base/index.mjs +2 -0
  32. package/esm2020/base/public-api.mjs +10 -0
  33. package/esm2020/base/series/series.component.mjs +91 -0
  34. package/esm2020/base/series/series.interface.mjs +2 -0
  35. package/{esm2015/base/themes/teradata-classic.js → esm2020/base/themes/aqua-splash.mjs} +10 -15
  36. package/esm2020/base/themes/california-coast.mjs +460 -0
  37. package/esm2020/base/themes/hawaiian-sunrise.mjs +460 -0
  38. package/{esm2015/base/themes/volcanic-eruption.js → esm2020/base/themes/passion-flower.mjs} +18 -23
  39. package/esm2020/base/themes/razzleberry-pie.mjs +460 -0
  40. package/esm2020/base/themes/teradata-classic.mjs +460 -0
  41. package/{esm2015/base/themes/hawaiian-sunrise.js → esm2020/base/themes/teradata-default.mjs} +18 -23
  42. package/esm2020/base/themes/urban-sunrise.mjs +460 -0
  43. package/esm2020/base/themes/volcanic-eruption.mjs +460 -0
  44. package/esm2020/base/utils/assign-defined.mjs +25 -0
  45. package/esm2020/base/utils/echarts.mjs +49 -0
  46. package/esm2020/base/utils/index.mjs +3 -0
  47. package/esm2020/covalent-echarts.mjs +5 -0
  48. package/esm2020/graph/covalent-echarts-graph.mjs +5 -0
  49. package/esm2020/graph/graph.component.mjs +186 -0
  50. package/esm2020/graph/graph.module.mjs +20 -0
  51. package/esm2020/graph/index.mjs +2 -0
  52. package/esm2020/graph/public-api.mjs +3 -0
  53. package/esm2020/index.mjs +2 -0
  54. package/esm2020/line/covalent-echarts-line.mjs +5 -0
  55. package/esm2020/line/index.mjs +2 -0
  56. package/esm2020/line/line.component.mjs +160 -0
  57. package/esm2020/line/line.module.mjs +20 -0
  58. package/esm2020/line/public-api.mjs +3 -0
  59. package/esm2020/map/covalent-echarts-map.mjs +5 -0
  60. package/esm2020/map/index.mjs +2 -0
  61. package/esm2020/map/map.component.mjs +133 -0
  62. package/esm2020/map/map.module.mjs +20 -0
  63. package/esm2020/map/public-api.mjs +3 -0
  64. package/esm2020/pie/covalent-echarts-pie.mjs +5 -0
  65. package/esm2020/pie/index.mjs +2 -0
  66. package/esm2020/pie/pie.component.mjs +128 -0
  67. package/esm2020/pie/pie.module.mjs +20 -0
  68. package/esm2020/pie/public-api.mjs +3 -0
  69. package/esm2020/sankey/covalent-echarts-sankey.mjs +5 -0
  70. package/esm2020/sankey/index.mjs +2 -0
  71. package/esm2020/sankey/public-api.mjs +3 -0
  72. package/esm2020/sankey/sankey.component.mjs +118 -0
  73. package/esm2020/sankey/sankey.module.mjs +20 -0
  74. package/esm2020/scatter/covalent-echarts-scatter.mjs +5 -0
  75. package/esm2020/scatter/index.mjs +2 -0
  76. package/esm2020/scatter/public-api.mjs +3 -0
  77. package/esm2020/scatter/scatter.component.mjs +145 -0
  78. package/esm2020/scatter/scatter.module.mjs +20 -0
  79. package/esm2020/toolbox/covalent-echarts-toolbox.mjs +5 -0
  80. package/esm2020/toolbox/index.mjs +2 -0
  81. package/esm2020/toolbox/public-api.mjs +3 -0
  82. package/esm2020/toolbox/toolbox.component.mjs +151 -0
  83. package/esm2020/toolbox/toolbox.module.mjs +20 -0
  84. package/esm2020/tooltip/covalent-echarts-tooltip.mjs +5 -0
  85. package/esm2020/tooltip/index.mjs +2 -0
  86. package/esm2020/tooltip/public-api.mjs +4 -0
  87. package/esm2020/tooltip/series-tooltip.component.mjs +111 -0
  88. package/esm2020/tooltip/tooltip.component.mjs +165 -0
  89. package/esm2020/tooltip/tooltip.module.mjs +29 -0
  90. package/esm2020/tree/covalent-echarts-tree.mjs +5 -0
  91. package/esm2020/tree/index.mjs +2 -0
  92. package/esm2020/tree/public-api.mjs +3 -0
  93. package/esm2020/tree/tree.component.mjs +118 -0
  94. package/esm2020/tree/tree.module.mjs +20 -0
  95. package/esm2020/treemap/covalent-echarts-treemap.mjs +5 -0
  96. package/esm2020/treemap/index.mjs +2 -0
  97. package/esm2020/treemap/public-api.mjs +3 -0
  98. package/esm2020/treemap/treemap.component.mjs +150 -0
  99. package/esm2020/treemap/treemap.module.mjs +20 -0
  100. package/esm2020/wordcloud/covalent-echarts-wordcloud.mjs +5 -0
  101. package/esm2020/wordcloud/index.mjs +2 -0
  102. package/esm2020/wordcloud/public-api.mjs +3 -0
  103. package/esm2020/wordcloud/wordcloud.component.mjs +93 -0
  104. package/esm2020/wordcloud/wordcloud.module.mjs +20 -0
  105. package/fesm2015/covalent-echarts-bar.mjs +164 -0
  106. package/fesm2015/covalent-echarts-bar.mjs.map +1 -0
  107. package/fesm2015/covalent-echarts-base.mjs +4864 -0
  108. package/fesm2015/covalent-echarts-base.mjs.map +1 -0
  109. package/fesm2015/covalent-echarts-graph.mjs +214 -0
  110. package/fesm2015/covalent-echarts-graph.mjs.map +1 -0
  111. package/fesm2015/covalent-echarts-line.mjs +188 -0
  112. package/fesm2015/covalent-echarts-line.mjs.map +1 -0
  113. package/fesm2015/covalent-echarts-map.mjs +161 -0
  114. package/fesm2015/{covalent-echarts-map.js.map → covalent-echarts-map.mjs.map} +1 -1
  115. package/fesm2015/covalent-echarts-pie.mjs +156 -0
  116. package/fesm2015/{covalent-echarts-pie.js.map → covalent-echarts-pie.mjs.map} +1 -1
  117. package/fesm2015/covalent-echarts-sankey.mjs +146 -0
  118. package/fesm2015/covalent-echarts-sankey.mjs.map +1 -0
  119. package/fesm2015/covalent-echarts-scatter.mjs +173 -0
  120. package/fesm2015/covalent-echarts-scatter.mjs.map +1 -0
  121. package/fesm2015/covalent-echarts-toolbox.mjs +184 -0
  122. package/fesm2015/covalent-echarts-toolbox.mjs.map +1 -0
  123. package/fesm2015/covalent-echarts-tooltip.mjs +330 -0
  124. package/fesm2015/covalent-echarts-tooltip.mjs.map +1 -0
  125. package/fesm2015/covalent-echarts-tree.mjs +146 -0
  126. package/fesm2015/covalent-echarts-tree.mjs.map +1 -0
  127. package/fesm2015/covalent-echarts-treemap.mjs +178 -0
  128. package/fesm2015/covalent-echarts-treemap.mjs.map +1 -0
  129. package/fesm2015/covalent-echarts-wordcloud.mjs +121 -0
  130. package/fesm2015/covalent-echarts-wordcloud.mjs.map +1 -0
  131. package/fesm2015/covalent-echarts.mjs +4 -0
  132. package/fesm2015/covalent-echarts.mjs.map +1 -0
  133. package/fesm2020/covalent-echarts-bar.mjs +160 -0
  134. package/{fesm2015/covalent-echarts-bar.js.map → fesm2020/covalent-echarts-bar.mjs.map} +1 -1
  135. package/{fesm2015/covalent-echarts-base.js → fesm2020/covalent-echarts-base.mjs} +218 -769
  136. package/fesm2020/covalent-echarts-base.mjs.map +1 -0
  137. package/fesm2020/covalent-echarts-graph.mjs +210 -0
  138. package/fesm2020/covalent-echarts-graph.mjs.map +1 -0
  139. package/fesm2020/covalent-echarts-line.mjs +184 -0
  140. package/fesm2020/covalent-echarts-line.mjs.map +1 -0
  141. package/fesm2020/covalent-echarts-map.mjs +157 -0
  142. package/fesm2020/covalent-echarts-map.mjs.map +1 -0
  143. package/fesm2020/covalent-echarts-pie.mjs +152 -0
  144. package/fesm2020/covalent-echarts-pie.mjs.map +1 -0
  145. package/fesm2020/covalent-echarts-sankey.mjs +142 -0
  146. package/fesm2020/covalent-echarts-sankey.mjs.map +1 -0
  147. package/fesm2020/covalent-echarts-scatter.mjs +169 -0
  148. package/fesm2020/covalent-echarts-scatter.mjs.map +1 -0
  149. package/fesm2020/covalent-echarts-toolbox.mjs +175 -0
  150. package/fesm2020/covalent-echarts-toolbox.mjs.map +1 -0
  151. package/fesm2020/covalent-echarts-tooltip.mjs +302 -0
  152. package/fesm2020/covalent-echarts-tooltip.mjs.map +1 -0
  153. package/fesm2020/covalent-echarts-tree.mjs +142 -0
  154. package/fesm2020/covalent-echarts-tree.mjs.map +1 -0
  155. package/fesm2020/covalent-echarts-treemap.mjs +174 -0
  156. package/fesm2020/covalent-echarts-treemap.mjs.map +1 -0
  157. package/fesm2020/covalent-echarts-wordcloud.mjs +117 -0
  158. package/fesm2020/covalent-echarts-wordcloud.mjs.map +1 -0
  159. package/fesm2020/covalent-echarts.mjs +4 -0
  160. package/fesm2020/covalent-echarts.mjs.map +1 -0
  161. package/graph/covalent-echarts-graph.d.ts +1 -0
  162. package/graph/graph.component.d.ts +3 -0
  163. package/graph/graph.module.d.ts +6 -1
  164. package/graph/package.json +6 -7
  165. package/line/covalent-echarts-line.d.ts +1 -0
  166. package/line/line.component.d.ts +3 -0
  167. package/line/line.module.d.ts +6 -1
  168. package/line/package.json +6 -7
  169. package/map/covalent-echarts-map.d.ts +1 -0
  170. package/map/map.component.d.ts +3 -0
  171. package/map/map.module.d.ts +6 -1
  172. package/map/package.json +6 -7
  173. package/package.json +134 -15
  174. package/pie/covalent-echarts-pie.d.ts +1 -0
  175. package/pie/package.json +6 -7
  176. package/pie/pie.component.d.ts +3 -0
  177. package/pie/pie.module.d.ts +6 -1
  178. package/sankey/covalent-echarts-sankey.d.ts +1 -0
  179. package/sankey/package.json +6 -7
  180. package/sankey/sankey.component.d.ts +3 -0
  181. package/sankey/sankey.module.d.ts +6 -1
  182. package/scatter/covalent-echarts-scatter.d.ts +1 -0
  183. package/scatter/package.json +6 -7
  184. package/scatter/scatter.component.d.ts +3 -0
  185. package/scatter/scatter.module.d.ts +6 -1
  186. package/toolbox/covalent-echarts-toolbox.d.ts +1 -0
  187. package/toolbox/package.json +6 -7
  188. package/toolbox/toolbox.component.d.ts +5 -0
  189. package/toolbox/toolbox.module.d.ts +6 -1
  190. package/tooltip/covalent-echarts-tooltip.d.ts +1 -0
  191. package/tooltip/package.json +6 -7
  192. package/tooltip/series-tooltip.component.d.ts +3 -0
  193. package/tooltip/tooltip.component.d.ts +5 -0
  194. package/tooltip/tooltip.module.d.ts +7 -1
  195. package/tree/covalent-echarts-tree.d.ts +1 -0
  196. package/tree/package.json +6 -7
  197. package/tree/tree.component.d.ts +3 -0
  198. package/tree/tree.module.d.ts +6 -1
  199. package/treemap/covalent-echarts-treemap.d.ts +1 -0
  200. package/treemap/package.json +6 -7
  201. package/treemap/treemap.component.d.ts +3 -0
  202. package/treemap/treemap.module.d.ts +6 -1
  203. package/wordcloud/covalent-echarts-wordcloud.d.ts +1 -0
  204. package/wordcloud/package.json +6 -7
  205. package/wordcloud/wordcloud.component.d.ts +3 -0
  206. package/wordcloud/wordcloud.module.d.ts +6 -1
  207. package/bar/covalent-echarts-bar.metadata.json +0 -1
  208. package/base/covalent-echarts-base.metadata.json +0 -1
  209. package/bundles/covalent-echarts-bar.umd.js +0 -588
  210. package/bundles/covalent-echarts-bar.umd.js.map +0 -1
  211. package/bundles/covalent-echarts-bar.umd.min.js +0 -16
  212. package/bundles/covalent-echarts-bar.umd.min.js.map +0 -1
  213. package/bundles/covalent-echarts-base.umd.js +0 -5750
  214. package/bundles/covalent-echarts-base.umd.js.map +0 -1
  215. package/bundles/covalent-echarts-base.umd.min.js +0 -16
  216. package/bundles/covalent-echarts-base.umd.min.js.map +0 -1
  217. package/bundles/covalent-echarts-graph.umd.js +0 -745
  218. package/bundles/covalent-echarts-graph.umd.js.map +0 -1
  219. package/bundles/covalent-echarts-graph.umd.min.js +0 -16
  220. package/bundles/covalent-echarts-graph.umd.min.js.map +0 -1
  221. package/bundles/covalent-echarts-line.umd.js +0 -638
  222. package/bundles/covalent-echarts-line.umd.js.map +0 -1
  223. package/bundles/covalent-echarts-line.umd.min.js +0 -16
  224. package/bundles/covalent-echarts-line.umd.min.js.map +0 -1
  225. package/bundles/covalent-echarts-map.umd.js +0 -600
  226. package/bundles/covalent-echarts-map.umd.js.map +0 -1
  227. package/bundles/covalent-echarts-map.umd.min.js +0 -16
  228. package/bundles/covalent-echarts-map.umd.min.js.map +0 -1
  229. package/bundles/covalent-echarts-pie.umd.js +0 -574
  230. package/bundles/covalent-echarts-pie.umd.js.map +0 -1
  231. package/bundles/covalent-echarts-pie.umd.min.js +0 -16
  232. package/bundles/covalent-echarts-pie.umd.min.js.map +0 -1
  233. package/bundles/covalent-echarts-sankey.umd.js +0 -570
  234. package/bundles/covalent-echarts-sankey.umd.js.map +0 -1
  235. package/bundles/covalent-echarts-sankey.umd.min.js +0 -16
  236. package/bundles/covalent-echarts-sankey.umd.min.js.map +0 -1
  237. package/bundles/covalent-echarts-scatter.umd.js +0 -610
  238. package/bundles/covalent-echarts-scatter.umd.js.map +0 -1
  239. package/bundles/covalent-echarts-scatter.umd.min.js +0 -16
  240. package/bundles/covalent-echarts-scatter.umd.min.js.map +0 -1
  241. package/bundles/covalent-echarts-toolbox.umd.js +0 -460
  242. package/bundles/covalent-echarts-toolbox.umd.js.map +0 -1
  243. package/bundles/covalent-echarts-toolbox.umd.min.js +0 -2
  244. package/bundles/covalent-echarts-toolbox.umd.min.js.map +0 -1
  245. package/bundles/covalent-echarts-tooltip.umd.js +0 -476
  246. package/bundles/covalent-echarts-tooltip.umd.js.map +0 -1
  247. package/bundles/covalent-echarts-tooltip.umd.min.js +0 -2
  248. package/bundles/covalent-echarts-tooltip.umd.min.js.map +0 -1
  249. package/bundles/covalent-echarts-tree.umd.js +0 -584
  250. package/bundles/covalent-echarts-tree.umd.js.map +0 -1
  251. package/bundles/covalent-echarts-tree.umd.min.js +0 -16
  252. package/bundles/covalent-echarts-tree.umd.min.js.map +0 -1
  253. package/bundles/covalent-echarts-treemap.umd.js +0 -728
  254. package/bundles/covalent-echarts-treemap.umd.js.map +0 -1
  255. package/bundles/covalent-echarts-treemap.umd.min.js +0 -16
  256. package/bundles/covalent-echarts-treemap.umd.min.js.map +0 -1
  257. package/bundles/covalent-echarts-wordcloud.umd.js +0 -521
  258. package/bundles/covalent-echarts-wordcloud.umd.js.map +0 -1
  259. package/bundles/covalent-echarts-wordcloud.umd.min.js +0 -16
  260. package/bundles/covalent-echarts-wordcloud.umd.min.js.map +0 -1
  261. package/bundles/covalent-echarts.umd.js +0 -9
  262. package/bundles/covalent-echarts.umd.js.map +0 -1
  263. package/bundles/covalent-echarts.umd.min.js +0 -2
  264. package/bundles/covalent-echarts.umd.min.js.map +0 -1
  265. package/covalent-echarts.metadata.json +0 -1
  266. package/esm2015/bar/bar.component.js +0 -241
  267. package/esm2015/bar/bar.module.js +0 -21
  268. package/esm2015/bar/covalent-echarts-bar.js +0 -10
  269. package/esm2015/bar/index.js +0 -7
  270. package/esm2015/bar/public-api.js +0 -8
  271. package/esm2015/base/axis/axis.component.js +0 -209
  272. package/esm2015/base/axis/axis.interface.js +0 -324
  273. package/esm2015/base/axis/x-axis.component.js +0 -67
  274. package/esm2015/base/axis/y-axis.component.js +0 -67
  275. package/esm2015/base/base.module.js +0 -31
  276. package/esm2015/base/base.types.js +0 -278
  277. package/esm2015/base/chart-options.service.js +0 -115
  278. package/esm2015/base/chart.component.js +0 -354
  279. package/esm2015/base/covalent-echarts-base.js +0 -11
  280. package/esm2015/base/dataset/dataset.component.js +0 -93
  281. package/esm2015/base/index.js +0 -7
  282. package/esm2015/base/public-api.js +0 -15
  283. package/esm2015/base/series/series.component.js +0 -187
  284. package/esm2015/base/series/series.interface.js +0 -178
  285. package/esm2015/base/themes/aqua-splash.js +0 -465
  286. package/esm2015/base/themes/california-coast.js +0 -465
  287. package/esm2015/base/themes/passion-flower.js +0 -465
  288. package/esm2015/base/themes/razzleberry-pie.js +0 -465
  289. package/esm2015/base/themes/teradata-default.js +0 -465
  290. package/esm2015/base/themes/urban-sunrise.js +0 -465
  291. package/esm2015/base/utils/assign-defined.js +0 -37
  292. package/esm2015/base/utils/echarts.js +0 -60
  293. package/esm2015/base/utils/index.js +0 -8
  294. package/esm2015/covalent-echarts.js +0 -10
  295. package/esm2015/graph/covalent-echarts-graph.js +0 -10
  296. package/esm2015/graph/graph.component.js +0 -398
  297. package/esm2015/graph/graph.module.js +0 -21
  298. package/esm2015/graph/index.js +0 -7
  299. package/esm2015/graph/public-api.js +0 -8
  300. package/esm2015/index.js +0 -7
  301. package/esm2015/line/covalent-echarts-line.js +0 -10
  302. package/esm2015/line/index.js +0 -7
  303. package/esm2015/line/line.component.js +0 -291
  304. package/esm2015/line/line.module.js +0 -21
  305. package/esm2015/line/public-api.js +0 -8
  306. package/esm2015/map/covalent-echarts-map.js +0 -10
  307. package/esm2015/map/index.js +0 -7
  308. package/esm2015/map/map.component.js +0 -253
  309. package/esm2015/map/map.module.js +0 -21
  310. package/esm2015/map/public-api.js +0 -8
  311. package/esm2015/pie/covalent-echarts-pie.js +0 -10
  312. package/esm2015/pie/index.js +0 -7
  313. package/esm2015/pie/pie.component.js +0 -227
  314. package/esm2015/pie/pie.module.js +0 -21
  315. package/esm2015/pie/public-api.js +0 -8
  316. package/esm2015/sankey/covalent-echarts-sankey.js +0 -10
  317. package/esm2015/sankey/index.js +0 -7
  318. package/esm2015/sankey/public-api.js +0 -8
  319. package/esm2015/sankey/sankey.component.js +0 -223
  320. package/esm2015/sankey/sankey.module.js +0 -21
  321. package/esm2015/scatter/covalent-echarts-scatter.js +0 -10
  322. package/esm2015/scatter/index.js +0 -7
  323. package/esm2015/scatter/public-api.js +0 -8
  324. package/esm2015/scatter/scatter.component.js +0 -263
  325. package/esm2015/scatter/scatter.module.js +0 -21
  326. package/esm2015/toolbox/covalent-echarts-toolbox.js +0 -10
  327. package/esm2015/toolbox/index.js +0 -7
  328. package/esm2015/toolbox/public-api.js +0 -8
  329. package/esm2015/toolbox/toolbox.component.js +0 -405
  330. package/esm2015/toolbox/toolbox.module.js +0 -21
  331. package/esm2015/tooltip/covalent-echarts-tooltip.js +0 -10
  332. package/esm2015/tooltip/index.js +0 -7
  333. package/esm2015/tooltip/public-api.js +0 -9
  334. package/esm2015/tooltip/series-tooltip.component.js +0 -170
  335. package/esm2015/tooltip/tooltip.component.js +0 -246
  336. package/esm2015/tooltip/tooltip.module.js +0 -26
  337. package/esm2015/tree/covalent-echarts-tree.js +0 -10
  338. package/esm2015/tree/index.js +0 -7
  339. package/esm2015/tree/public-api.js +0 -8
  340. package/esm2015/tree/tree.component.js +0 -237
  341. package/esm2015/tree/tree.module.js +0 -21
  342. package/esm2015/treemap/covalent-echarts-treemap.js +0 -10
  343. package/esm2015/treemap/index.js +0 -7
  344. package/esm2015/treemap/public-api.js +0 -8
  345. package/esm2015/treemap/treemap.component.js +0 -380
  346. package/esm2015/treemap/treemap.module.js +0 -21
  347. package/esm2015/wordcloud/covalent-echarts-wordcloud.js +0 -10
  348. package/esm2015/wordcloud/index.js +0 -7
  349. package/esm2015/wordcloud/public-api.js +0 -8
  350. package/esm2015/wordcloud/wordcloud.component.js +0 -174
  351. package/esm2015/wordcloud/wordcloud.module.js +0 -21
  352. package/fesm2015/covalent-echarts-bar.js +0 -281
  353. package/fesm2015/covalent-echarts-base.js.map +0 -1
  354. package/fesm2015/covalent-echarts-graph.js +0 -438
  355. package/fesm2015/covalent-echarts-graph.js.map +0 -1
  356. package/fesm2015/covalent-echarts-line.js +0 -331
  357. package/fesm2015/covalent-echarts-line.js.map +0 -1
  358. package/fesm2015/covalent-echarts-map.js +0 -293
  359. package/fesm2015/covalent-echarts-pie.js +0 -267
  360. package/fesm2015/covalent-echarts-sankey.js +0 -263
  361. package/fesm2015/covalent-echarts-sankey.js.map +0 -1
  362. package/fesm2015/covalent-echarts-scatter.js +0 -303
  363. package/fesm2015/covalent-echarts-scatter.js.map +0 -1
  364. package/fesm2015/covalent-echarts-toolbox.js +0 -445
  365. package/fesm2015/covalent-echarts-toolbox.js.map +0 -1
  366. package/fesm2015/covalent-echarts-tooltip.js +0 -457
  367. package/fesm2015/covalent-echarts-tooltip.js.map +0 -1
  368. package/fesm2015/covalent-echarts-tree.js +0 -277
  369. package/fesm2015/covalent-echarts-tree.js.map +0 -1
  370. package/fesm2015/covalent-echarts-treemap.js +0 -420
  371. package/fesm2015/covalent-echarts-treemap.js.map +0 -1
  372. package/fesm2015/covalent-echarts-wordcloud.js +0 -214
  373. package/fesm2015/covalent-echarts-wordcloud.js.map +0 -1
  374. package/fesm2015/covalent-echarts.js +0 -12
  375. package/fesm2015/covalent-echarts.js.map +0 -1
  376. package/graph/covalent-echarts-graph.metadata.json +0 -1
  377. package/line/covalent-echarts-line.metadata.json +0 -1
  378. package/map/covalent-echarts-map.metadata.json +0 -1
  379. package/pie/covalent-echarts-pie.metadata.json +0 -1
  380. package/sankey/covalent-echarts-sankey.metadata.json +0 -1
  381. package/scatter/covalent-echarts-scatter.metadata.json +0 -1
  382. package/toolbox/covalent-echarts-toolbox.metadata.json +0 -1
  383. package/tooltip/covalent-echarts-tooltip.metadata.json +0 -1
  384. package/tree/covalent-echarts-tree.metadata.json +0 -1
  385. package/treemap/covalent-echarts-treemap.metadata.json +0 -1
  386. package/wordcloud/covalent-echarts-wordcloud.metadata.json +0 -1
@@ -1,5 +1,10 @@
1
1
  import { Type } from '@angular/core';
2
- import 'echarts/lib/chart/map';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./map.component";
4
+ import * as i2 from "@angular/common";
3
5
  export declare const MAP_MODULE_COMPONENTS: Type<any>[];
4
6
  export declare class CovalentMapEchartsModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<CovalentMapEchartsModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CovalentMapEchartsModule, [typeof i1.TdChartSeriesMapComponent], [typeof i2.CommonModule], [typeof i1.TdChartSeriesMapComponent]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<CovalentMapEchartsModule>;
5
10
  }
package/map/package.json CHANGED
@@ -1,11 +1,10 @@
1
1
  {
2
- "main": "../bundles/covalent-echarts-map.umd.js",
3
- "module": "../fesm2015/covalent-echarts-map.js",
4
- "es2015": "../fesm2015/covalent-echarts-map.js",
5
- "esm2015": "../esm2015/map/covalent-echarts-map.js",
6
- "fesm2015": "../fesm2015/covalent-echarts-map.js",
2
+ "module": "../fesm2015/covalent-echarts-map.mjs",
3
+ "es2020": "../fesm2020/covalent-echarts-map.mjs",
4
+ "esm2020": "../esm2020/map/covalent-echarts-map.mjs",
5
+ "fesm2020": "../fesm2020/covalent-echarts-map.mjs",
6
+ "fesm2015": "../fesm2015/covalent-echarts-map.mjs",
7
7
  "typings": "covalent-echarts-map.d.ts",
8
- "metadata": "covalent-echarts-map.metadata.json",
9
8
  "sideEffects": false,
10
9
  "name": "@covalent/echarts/map"
11
- }
10
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@covalent/echarts",
3
- "version": "4.0.0-alpha.0",
3
+ "version": "4.0.0-beta.4",
4
4
  "description": "Teradata UI Platform Echarts Module",
5
5
  "keywords": [
6
6
  "angular",
@@ -27,21 +27,140 @@
27
27
  "Jeremy Smartt <jeremy.smartt@teradata.com>",
28
28
  "Steven Ov <steven.ov@teradata.com>"
29
29
  ],
30
- "dependencies": {
31
- "echarts-wordcloud": "^1.1.3",
32
- "tslib": "^2.0.0"
33
- },
34
30
  "peerDependencies": {
31
+ "echarts-wordcloud": "^1.1.3",
35
32
  "echarts": "^4.2.1",
36
- "@angular/common": "^9.0.0 || ^10.0.0-0 || ^11.0.0-0",
37
- "@angular/core": "^9.0.0 || ^10.0.0-0 || ^11.0.0-0"
33
+ "@angular/common": "^12.0.0-0 || ^13.0.0-0",
34
+ "@angular/core": "^12.0.0-0 || ^13.0.0-0"
38
35
  },
39
- "main": "bundles/covalent-echarts.umd.js",
40
- "module": "fesm2015/covalent-echarts.js",
41
- "es2015": "fesm2015/covalent-echarts.js",
42
- "esm2015": "esm2015/covalent-echarts.js",
43
- "fesm2015": "fesm2015/covalent-echarts.js",
36
+ "module": "fesm2015/covalent-echarts.mjs",
37
+ "es2020": "fesm2020/covalent-echarts.mjs",
38
+ "esm2020": "esm2020/covalent-echarts.mjs",
39
+ "fesm2020": "fesm2020/covalent-echarts.mjs",
40
+ "fesm2015": "fesm2015/covalent-echarts.mjs",
44
41
  "typings": "covalent-echarts.d.ts",
45
- "metadata": "covalent-echarts.metadata.json",
46
- "sideEffects": false
47
- }
42
+ "exports": {
43
+ "./package.json": {
44
+ "default": "./package.json"
45
+ },
46
+ ".": {
47
+ "types": "./covalent-echarts.d.ts",
48
+ "esm2020": "./esm2020/covalent-echarts.mjs",
49
+ "es2020": "./fesm2020/covalent-echarts.mjs",
50
+ "es2015": "./fesm2015/covalent-echarts.mjs",
51
+ "node": "./fesm2015/covalent-echarts.mjs",
52
+ "default": "./fesm2020/covalent-echarts.mjs"
53
+ },
54
+ "./bar": {
55
+ "types": "./bar/covalent-echarts-bar.d.ts",
56
+ "esm2020": "./esm2020/bar/covalent-echarts-bar.mjs",
57
+ "es2020": "./fesm2020/covalent-echarts-bar.mjs",
58
+ "es2015": "./fesm2015/covalent-echarts-bar.mjs",
59
+ "node": "./fesm2015/covalent-echarts-bar.mjs",
60
+ "default": "./fesm2020/covalent-echarts-bar.mjs"
61
+ },
62
+ "./base": {
63
+ "types": "./base/covalent-echarts-base.d.ts",
64
+ "esm2020": "./esm2020/base/covalent-echarts-base.mjs",
65
+ "es2020": "./fesm2020/covalent-echarts-base.mjs",
66
+ "es2015": "./fesm2015/covalent-echarts-base.mjs",
67
+ "node": "./fesm2015/covalent-echarts-base.mjs",
68
+ "default": "./fesm2020/covalent-echarts-base.mjs"
69
+ },
70
+ "./graph": {
71
+ "types": "./graph/covalent-echarts-graph.d.ts",
72
+ "esm2020": "./esm2020/graph/covalent-echarts-graph.mjs",
73
+ "es2020": "./fesm2020/covalent-echarts-graph.mjs",
74
+ "es2015": "./fesm2015/covalent-echarts-graph.mjs",
75
+ "node": "./fesm2015/covalent-echarts-graph.mjs",
76
+ "default": "./fesm2020/covalent-echarts-graph.mjs"
77
+ },
78
+ "./line": {
79
+ "types": "./line/covalent-echarts-line.d.ts",
80
+ "esm2020": "./esm2020/line/covalent-echarts-line.mjs",
81
+ "es2020": "./fesm2020/covalent-echarts-line.mjs",
82
+ "es2015": "./fesm2015/covalent-echarts-line.mjs",
83
+ "node": "./fesm2015/covalent-echarts-line.mjs",
84
+ "default": "./fesm2020/covalent-echarts-line.mjs"
85
+ },
86
+ "./map": {
87
+ "types": "./map/covalent-echarts-map.d.ts",
88
+ "esm2020": "./esm2020/map/covalent-echarts-map.mjs",
89
+ "es2020": "./fesm2020/covalent-echarts-map.mjs",
90
+ "es2015": "./fesm2015/covalent-echarts-map.mjs",
91
+ "node": "./fesm2015/covalent-echarts-map.mjs",
92
+ "default": "./fesm2020/covalent-echarts-map.mjs"
93
+ },
94
+ "./pie": {
95
+ "types": "./pie/covalent-echarts-pie.d.ts",
96
+ "esm2020": "./esm2020/pie/covalent-echarts-pie.mjs",
97
+ "es2020": "./fesm2020/covalent-echarts-pie.mjs",
98
+ "es2015": "./fesm2015/covalent-echarts-pie.mjs",
99
+ "node": "./fesm2015/covalent-echarts-pie.mjs",
100
+ "default": "./fesm2020/covalent-echarts-pie.mjs"
101
+ },
102
+ "./sankey": {
103
+ "types": "./sankey/covalent-echarts-sankey.d.ts",
104
+ "esm2020": "./esm2020/sankey/covalent-echarts-sankey.mjs",
105
+ "es2020": "./fesm2020/covalent-echarts-sankey.mjs",
106
+ "es2015": "./fesm2015/covalent-echarts-sankey.mjs",
107
+ "node": "./fesm2015/covalent-echarts-sankey.mjs",
108
+ "default": "./fesm2020/covalent-echarts-sankey.mjs"
109
+ },
110
+ "./scatter": {
111
+ "types": "./scatter/covalent-echarts-scatter.d.ts",
112
+ "esm2020": "./esm2020/scatter/covalent-echarts-scatter.mjs",
113
+ "es2020": "./fesm2020/covalent-echarts-scatter.mjs",
114
+ "es2015": "./fesm2015/covalent-echarts-scatter.mjs",
115
+ "node": "./fesm2015/covalent-echarts-scatter.mjs",
116
+ "default": "./fesm2020/covalent-echarts-scatter.mjs"
117
+ },
118
+ "./toolbox": {
119
+ "types": "./toolbox/covalent-echarts-toolbox.d.ts",
120
+ "esm2020": "./esm2020/toolbox/covalent-echarts-toolbox.mjs",
121
+ "es2020": "./fesm2020/covalent-echarts-toolbox.mjs",
122
+ "es2015": "./fesm2015/covalent-echarts-toolbox.mjs",
123
+ "node": "./fesm2015/covalent-echarts-toolbox.mjs",
124
+ "default": "./fesm2020/covalent-echarts-toolbox.mjs"
125
+ },
126
+ "./tooltip": {
127
+ "types": "./tooltip/covalent-echarts-tooltip.d.ts",
128
+ "esm2020": "./esm2020/tooltip/covalent-echarts-tooltip.mjs",
129
+ "es2020": "./fesm2020/covalent-echarts-tooltip.mjs",
130
+ "es2015": "./fesm2015/covalent-echarts-tooltip.mjs",
131
+ "node": "./fesm2015/covalent-echarts-tooltip.mjs",
132
+ "default": "./fesm2020/covalent-echarts-tooltip.mjs"
133
+ },
134
+ "./tree": {
135
+ "types": "./tree/covalent-echarts-tree.d.ts",
136
+ "esm2020": "./esm2020/tree/covalent-echarts-tree.mjs",
137
+ "es2020": "./fesm2020/covalent-echarts-tree.mjs",
138
+ "es2015": "./fesm2015/covalent-echarts-tree.mjs",
139
+ "node": "./fesm2015/covalent-echarts-tree.mjs",
140
+ "default": "./fesm2020/covalent-echarts-tree.mjs"
141
+ },
142
+ "./treemap": {
143
+ "types": "./treemap/covalent-echarts-treemap.d.ts",
144
+ "esm2020": "./esm2020/treemap/covalent-echarts-treemap.mjs",
145
+ "es2020": "./fesm2020/covalent-echarts-treemap.mjs",
146
+ "es2015": "./fesm2015/covalent-echarts-treemap.mjs",
147
+ "node": "./fesm2015/covalent-echarts-treemap.mjs",
148
+ "default": "./fesm2020/covalent-echarts-treemap.mjs"
149
+ },
150
+ "./wordcloud": {
151
+ "types": "./wordcloud/covalent-echarts-wordcloud.d.ts",
152
+ "esm2020": "./esm2020/wordcloud/covalent-echarts-wordcloud.mjs",
153
+ "es2020": "./fesm2020/covalent-echarts-wordcloud.mjs",
154
+ "es2015": "./fesm2015/covalent-echarts-wordcloud.mjs",
155
+ "node": "./fesm2015/covalent-echarts-wordcloud.mjs",
156
+ "default": "./fesm2020/covalent-echarts-wordcloud.mjs"
157
+ }
158
+ },
159
+ "sideEffects": false,
160
+ "dependencies": {
161
+ "tslib": "^2.3.0"
162
+ },
163
+ "scripts": {
164
+ "prepublishOnly": "node --eval \"console.error('ERROR: Trying to publish a package that has been compiled by Ivy in full compilation mode. This is not allowed.\\nPlease delete and rebuild the package with Ivy partial compilation mode, before attempting to publish.\\n')\" && exit 1"
165
+ }
166
+ }
@@ -1,4 +1,5 @@
1
1
  /**
2
2
  * Generated bundle index. Do not edit.
3
3
  */
4
+ /// <amd-module name="@covalent/echarts/pie" />
4
5
  export * from './index';
package/pie/package.json CHANGED
@@ -1,11 +1,10 @@
1
1
  {
2
- "main": "../bundles/covalent-echarts-pie.umd.js",
3
- "module": "../fesm2015/covalent-echarts-pie.js",
4
- "es2015": "../fesm2015/covalent-echarts-pie.js",
5
- "esm2015": "../esm2015/pie/covalent-echarts-pie.js",
6
- "fesm2015": "../fesm2015/covalent-echarts-pie.js",
2
+ "module": "../fesm2015/covalent-echarts-pie.mjs",
3
+ "es2020": "../fesm2020/covalent-echarts-pie.mjs",
4
+ "esm2020": "../esm2020/pie/covalent-echarts-pie.mjs",
5
+ "fesm2020": "../fesm2020/covalent-echarts-pie.mjs",
6
+ "fesm2015": "../fesm2015/covalent-echarts-pie.mjs",
7
7
  "typings": "covalent-echarts-pie.d.ts",
8
- "metadata": "covalent-echarts-pie.metadata.json",
9
8
  "sideEffects": false,
10
9
  "name": "@covalent/echarts/pie"
11
- }
10
+ }
@@ -1,4 +1,5 @@
1
1
  import { TdChartOptionsService, ITdItemStyle, ITdEmphasis, TdSeriesLayoutBy, ITdMarkPoint, ITdMarkLine, ITdMarkArea, ITdSeries, ITdLabel, ITdLabelLine, TdSeriesDirective } from '@covalent/echarts/base';
2
+ import * as i0 from "@angular/core";
2
3
  export interface ITdPieSeries extends ITdSeries {
3
4
  legendHoverLink?: boolean;
4
5
  hoverAnimation?: boolean;
@@ -58,4 +59,6 @@ export declare class TdChartSeriesPieComponent extends TdSeriesDirective impleme
58
59
  radius: number | string | any[];
59
60
  constructor(_optionsService: TdChartOptionsService);
60
61
  getConfig(): any;
62
+ static ɵfac: i0.ɵɵFactoryDeclaration<TdChartSeriesPieComponent, never>;
63
+ static ɵcmp: i0.ɵɵComponentDeclaration<TdChartSeriesPieComponent, "td-chart-series[td-pie]", never, { "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"; "legendHoverLink": "legendHoverLink"; "hoverAnimation": "hoverAnimation"; "hoverOffset": "hoverOffset"; "selectedMode": "selectedMode"; "selectedOffset": "selectedOffset"; "clockwise": "clockwise"; "startAngle": "startAngle"; "minAngle": "minAngle"; "minShowLabelAngle": "minShowLabelAngle"; "roseType": "roseType"; "avoidLabelOverlap": "avoidLabelOverlap"; "stillShowZeroSum": "stillShowZeroSum"; "cursor": "cursor"; "labelLine": "labelLine"; "label": "label"; "itemStyle": "itemStyle"; "emphasis": "emphasis"; "seriesLayoutBy": "seriesLayoutBy"; "datasetIndex": "datasetIndex"; "markPoint": "markPoint"; "markLine": "markLine"; "markArea": "markArea"; "zlevel": "zlevel"; "z": "z"; "center": "center"; "radius": "radius"; }, {}, never, never>;
61
64
  }
@@ -1,5 +1,10 @@
1
1
  import { Type } from '@angular/core';
2
- import 'echarts/lib/chart/pie';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./pie.component";
4
+ import * as i2 from "@angular/common";
3
5
  export declare const PIE_MODULE_COMPONENTS: Type<any>[];
4
6
  export declare class CovalentPieEchartsModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<CovalentPieEchartsModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CovalentPieEchartsModule, [typeof i1.TdChartSeriesPieComponent], [typeof i2.CommonModule], [typeof i1.TdChartSeriesPieComponent]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<CovalentPieEchartsModule>;
5
10
  }
@@ -1,4 +1,5 @@
1
1
  /**
2
2
  * Generated bundle index. Do not edit.
3
3
  */
4
+ /// <amd-module name="@covalent/echarts/sankey" />
4
5
  export * from './index';
@@ -1,11 +1,10 @@
1
1
  {
2
- "main": "../bundles/covalent-echarts-sankey.umd.js",
3
- "module": "../fesm2015/covalent-echarts-sankey.js",
4
- "es2015": "../fesm2015/covalent-echarts-sankey.js",
5
- "esm2015": "../esm2015/sankey/covalent-echarts-sankey.js",
6
- "fesm2015": "../fesm2015/covalent-echarts-sankey.js",
2
+ "module": "../fesm2015/covalent-echarts-sankey.mjs",
3
+ "es2020": "../fesm2020/covalent-echarts-sankey.mjs",
4
+ "esm2020": "../esm2020/sankey/covalent-echarts-sankey.mjs",
5
+ "fesm2020": "../fesm2020/covalent-echarts-sankey.mjs",
6
+ "fesm2015": "../fesm2015/covalent-echarts-sankey.mjs",
7
7
  "typings": "covalent-echarts-sankey.d.ts",
8
- "metadata": "covalent-echarts-sankey.metadata.json",
9
8
  "sideEffects": false,
10
9
  "name": "@covalent/echarts/sankey"
11
- }
10
+ }
@@ -1,4 +1,5 @@
1
1
  import { TdChartOptionsService, ITdLabel, ITdItemStyle, ITdEmphasis, ITdSeries, TdSeriesDirective, ITdShadow, ITdLineCurveStyle } from '@covalent/echarts/base';
2
+ import * as i0 from "@angular/core";
2
3
  export declare type TdSankeyOrient = 'horizontal' | 'vertical';
3
4
  export declare type TdSankeyFocusNodeAdjacency = boolean | 'allEdges' | 'outEdges' | 'inEdges';
4
5
  export interface ITdSankeyEmphasisLineStyle extends ITdShadow {
@@ -59,4 +60,6 @@ export declare class TdChartSeriesSankeyComponent extends TdSeriesDirective impl
59
60
  silent: boolean;
60
61
  constructor(_optionsService: TdChartOptionsService);
61
62
  getConfig(): any;
63
+ static ɵfac: i0.ɵɵFactoryDeclaration<TdChartSeriesSankeyComponent, never>;
64
+ static ɵcmp: i0.ɵɵComponentDeclaration<TdChartSeriesSankeyComponent, "td-chart-series[td-sankey]", never, { "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"; "nodeWidth": "nodeWidth"; "nodeGap": "nodeGap"; "layoutIterations": "layoutIterations"; "orient": "orient"; "draggable": "draggable"; "focusNodeAdjacency": "focusNodeAdjacency"; "label": "label"; "itemStyle": "itemStyle"; "lineStyle": "lineStyle"; "emphasis": "emphasis"; "nodes": "nodes"; "links": "links"; "edges": "edges"; "silent": "silent"; }, {}, never, never>;
62
65
  }
@@ -1,5 +1,10 @@
1
1
  import { Type } from '@angular/core';
2
- import 'echarts/lib/chart/sankey';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./sankey.component";
4
+ import * as i2 from "@angular/common";
3
5
  export declare const SANKEY_MODULE_COMPONENTS: Type<any>[];
4
6
  export declare class CovalentSankeyEchartsModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<CovalentSankeyEchartsModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CovalentSankeyEchartsModule, [typeof i1.TdChartSeriesSankeyComponent], [typeof i2.CommonModule], [typeof i1.TdChartSeriesSankeyComponent]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<CovalentSankeyEchartsModule>;
5
10
  }
@@ -1,4 +1,5 @@
1
1
  /**
2
2
  * Generated bundle index. Do not edit.
3
3
  */
4
+ /// <amd-module name="@covalent/echarts/scatter" />
4
5
  export * from './index';
@@ -1,11 +1,10 @@
1
1
  {
2
- "main": "../bundles/covalent-echarts-scatter.umd.js",
3
- "module": "../fesm2015/covalent-echarts-scatter.js",
4
- "es2015": "../fesm2015/covalent-echarts-scatter.js",
5
- "esm2015": "../esm2015/scatter/covalent-echarts-scatter.js",
6
- "fesm2015": "../fesm2015/covalent-echarts-scatter.js",
2
+ "module": "../fesm2015/covalent-echarts-scatter.mjs",
3
+ "es2020": "../fesm2020/covalent-echarts-scatter.mjs",
4
+ "esm2020": "../esm2020/scatter/covalent-echarts-scatter.mjs",
5
+ "fesm2020": "../fesm2020/covalent-echarts-scatter.mjs",
6
+ "fesm2015": "../fesm2015/covalent-echarts-scatter.mjs",
7
7
  "typings": "covalent-echarts-scatter.d.ts",
8
- "metadata": "covalent-echarts-scatter.metadata.json",
9
8
  "sideEffects": false,
10
9
  "name": "@covalent/echarts/scatter"
11
- }
10
+ }
@@ -1,4 +1,5 @@
1
1
  import { TdChartOptionsService, TdCoordinateSystem, TdMarkPointSymbol, ITdMarkPoint, ITdItemStyle, ITdLabel, ITdEmphasis, TdSeriesLayoutBy, ITdMarkLine, ITdMarkArea, TdSeriesDirective, ITdSeries } from '@covalent/echarts/base';
2
+ import * as i0 from "@angular/core";
2
3
  export interface ITdScatterSeries extends ITdSeries {
3
4
  coordinateSystem?: TdCoordinateSystem;
4
5
  xAxisIndex?: number;
@@ -70,4 +71,6 @@ export declare class TdChartSeriesScatterComponent extends TdSeriesDirective imp
70
71
  silent: boolean;
71
72
  constructor(_optionsService: TdChartOptionsService);
72
73
  getConfig(): any;
74
+ static ɵfac: i0.ɵɵFactoryDeclaration<TdChartSeriesScatterComponent, never>;
75
+ static ɵcmp: i0.ɵɵComponentDeclaration<TdChartSeriesScatterComponent, "td-chart-series[td-scatter]", never, { "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"; "coordinateSystem": "coordinateSystem"; "xAxisIndex": "xAxisIndex"; "yAxisIndex": "yAxisIndex"; "polarIndex": "polarIndex"; "geoIndex": "geoIndex"; "calendarIndex": "calendarIndex"; "hoverAnimation": "hoverAnimation"; "legendHoverLink": "legendHoverLink"; "symbol": "symbol"; "symbolSize": "symbolSize"; "symbolRotate": "symbolRotate"; "symbolKeepAspect": "symbolKeepAspect"; "symbolOffset": "symbolOffset"; "large": "large"; "largeThreshold": "largeThreshold"; "cursor": "cursor"; "label": "label"; "itemStyle": "itemStyle"; "emphasis": "emphasis"; "progressive": "progressive"; "progressiveThreshold": "progressiveThreshold"; "dimensions": "dimensions"; "encode": "encode"; "seriesLayoutBy": "seriesLayoutBy"; "datasetIndex": "datasetIndex"; "markPoint": "markPoint"; "markLine": "markLine"; "markArea": "markArea"; "zlevel": "zlevel"; "z": "z"; "silent": "silent"; }, {}, never, never>;
73
76
  }
@@ -1,5 +1,10 @@
1
1
  import { Type } from '@angular/core';
2
- import 'echarts/lib/chart/scatter';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./scatter.component";
4
+ import * as i2 from "@angular/common";
3
5
  export declare const SCATTER_MODULE_COMPONENTS: Type<any>[];
4
6
  export declare class CovalentScatterEchartsModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<CovalentScatterEchartsModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CovalentScatterEchartsModule, [typeof i1.TdChartSeriesScatterComponent], [typeof i2.CommonModule], [typeof i1.TdChartSeriesScatterComponent]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<CovalentScatterEchartsModule>;
5
10
  }
@@ -1,4 +1,5 @@
1
1
  /**
2
2
  * Generated bundle index. Do not edit.
3
3
  */
4
+ /// <amd-module name="@covalent/echarts/toolbox" />
4
5
  export * from './index';
@@ -1,11 +1,10 @@
1
1
  {
2
- "main": "../bundles/covalent-echarts-toolbox.umd.js",
3
- "module": "../fesm2015/covalent-echarts-toolbox.js",
4
- "es2015": "../fesm2015/covalent-echarts-toolbox.js",
5
- "esm2015": "../esm2015/toolbox/covalent-echarts-toolbox.js",
6
- "fesm2015": "../fesm2015/covalent-echarts-toolbox.js",
2
+ "module": "../fesm2015/covalent-echarts-toolbox.mjs",
3
+ "es2020": "../fesm2020/covalent-echarts-toolbox.mjs",
4
+ "esm2020": "../esm2020/toolbox/covalent-echarts-toolbox.mjs",
5
+ "fesm2020": "../fesm2020/covalent-echarts-toolbox.mjs",
6
+ "fesm2015": "../fesm2015/covalent-echarts-toolbox.mjs",
7
7
  "typings": "covalent-echarts-toolbox.d.ts",
8
- "metadata": "covalent-echarts-toolbox.metadata.json",
9
8
  "sideEffects": false,
10
9
  "name": "@covalent/echarts/toolbox"
11
- }
10
+ }
@@ -1,5 +1,6 @@
1
1
  import { TemplateRef, ElementRef, ChangeDetectorRef, OnChanges, OnDestroy } from '@angular/core';
2
2
  import { TdChartOptionsService, ITdLabel, ITdShadow, ITdItemStyle, TdTextPosition, TdTextAlign } from '@covalent/echarts/base';
3
+ import * as i0 from "@angular/core";
3
4
  export declare type TdToolboxOrient = 'horizontal' | 'vertical';
4
5
  export declare type TdImageType = 'png' | 'jpeg';
5
6
  export interface ITdAcceptedBrushTypes {
@@ -100,6 +101,8 @@ export interface ITdToolboxFeature {
100
101
  brush?: ITdBrush;
101
102
  }
102
103
  export declare class TdChartViewDataFormatterDirective {
104
+ static ɵfac: i0.ɵɵFactoryDeclaration<TdChartViewDataFormatterDirective, never>;
105
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TdChartViewDataFormatterDirective, "ng-template[tdViewDataFormatter]", never, {}, {}, never>;
103
106
  }
104
107
  export declare class TdChartToolboxComponent implements OnChanges, OnDestroy {
105
108
  private _changeDetectorRef;
@@ -134,4 +137,6 @@ export declare class TdChartToolboxComponent implements OnChanges, OnDestroy {
134
137
  private _removeOption;
135
138
  private _checkFormatterTemplate;
136
139
  private _optionToContentFormatter;
140
+ static ɵfac: i0.ɵɵFactoryDeclaration<TdChartToolboxComponent, never>;
141
+ static ɵcmp: i0.ɵɵComponentDeclaration<TdChartToolboxComponent, "td-chart-toolbox", never, { "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"; }, {}, ["formatterTemplate"], never>;
137
142
  }
@@ -1,5 +1,10 @@
1
1
  import { Type } from '@angular/core';
2
- import 'echarts/lib/component/toolbox';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./toolbox.component";
4
+ import * as i2 from "@angular/common";
3
5
  export declare const TOOLBOX_MODULE_COMPONENTS: Type<any>[];
4
6
  export declare class CovalentToolboxEchartsModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<CovalentToolboxEchartsModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CovalentToolboxEchartsModule, [typeof i1.TdChartToolboxComponent, typeof i1.TdChartViewDataFormatterDirective], [typeof i2.CommonModule], [typeof i1.TdChartToolboxComponent, typeof i1.TdChartViewDataFormatterDirective]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<CovalentToolboxEchartsModule>;
5
10
  }
@@ -1,4 +1,5 @@
1
1
  /**
2
2
  * Generated bundle index. Do not edit.
3
3
  */
4
+ /// <amd-module name="@covalent/echarts/tooltip" />
4
5
  export * from './index';
@@ -1,11 +1,10 @@
1
1
  {
2
- "main": "../bundles/covalent-echarts-tooltip.umd.js",
3
- "module": "../fesm2015/covalent-echarts-tooltip.js",
4
- "es2015": "../fesm2015/covalent-echarts-tooltip.js",
5
- "esm2015": "../esm2015/tooltip/covalent-echarts-tooltip.js",
6
- "fesm2015": "../fesm2015/covalent-echarts-tooltip.js",
2
+ "module": "../fesm2015/covalent-echarts-tooltip.mjs",
3
+ "es2020": "../fesm2020/covalent-echarts-tooltip.mjs",
4
+ "esm2020": "../esm2020/tooltip/covalent-echarts-tooltip.mjs",
5
+ "fesm2020": "../fesm2020/covalent-echarts-tooltip.mjs",
6
+ "fesm2015": "../fesm2015/covalent-echarts-tooltip.mjs",
7
7
  "typings": "covalent-echarts-tooltip.d.ts",
8
- "metadata": "covalent-echarts-tooltip.metadata.json",
9
8
  "sideEffects": false,
10
9
  "name": "@covalent/echarts/tooltip"
11
- }
10
+ }
@@ -1,6 +1,7 @@
1
1
  import { TemplateRef, ChangeDetectorRef, ElementRef, OnChanges, OnDestroy } from '@angular/core';
2
2
  import { TdSeriesDirective } from '@covalent/echarts/base';
3
3
  import { TdTooltipContext } from './tooltip.component';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class TdSeriesTooltipComponent implements OnChanges, OnDestroy {
5
6
  private _changeDetectorRef;
6
7
  private _elementRef;
@@ -28,4 +29,6 @@ export declare class TdSeriesTooltipComponent implements OnChanges, OnDestroy {
28
29
  */
29
30
  private _formatter;
30
31
  private _removeOption;
32
+ static ɵfac: i0.ɵɵFactoryDeclaration<TdSeriesTooltipComponent, never>;
33
+ static ɵcmp: i0.ɵɵComponentDeclaration<TdSeriesTooltipComponent, "td-chart-series-tooltip", never, { "config": "config"; "formatter": "formatter"; "position": "position"; "backgroundColor": "backgroundColor"; "borderColor": "borderColor"; "borderWidth": "borderWidth"; "padding": "padding"; "textStyle": "textStyle"; "extraCssText": "extraCssText"; }, {}, ["formatterTemplate"], never>;
31
34
  }
@@ -1,10 +1,13 @@
1
1
  import { TemplateRef, ElementRef, ChangeDetectorRef, OnChanges, OnDestroy } from '@angular/core';
2
2
  import { TdChartOptionsService, TdTooltipTrigger, TdTooltipTriggerOn, TdTooltipPosition } from '@covalent/echarts/base';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class TdTooltipContext {
4
5
  $implicit: any;
5
6
  ticket: string;
6
7
  }
7
8
  export declare class TdChartTooltipFormatterDirective {
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<TdChartTooltipFormatterDirective, never>;
10
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TdChartTooltipFormatterDirective, "ng-template[tdTooltipFormatter]", never, {}, {}, never>;
8
11
  }
9
12
  export declare class TdChartTooltipComponent implements OnChanges, OnDestroy {
10
13
  private _changeDetectorRef;
@@ -41,4 +44,6 @@ export declare class TdChartTooltipComponent implements OnChanges, OnDestroy {
41
44
  private _setOptions;
42
45
  private _removeOption;
43
46
  private _formatter;
47
+ static ɵfac: i0.ɵɵFactoryDeclaration<TdChartTooltipComponent, never>;
48
+ static ɵcmp: i0.ɵɵComponentDeclaration<TdChartTooltipComponent, "td-chart-tooltip", never, { "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"; }, {}, ["formatterTemplate"], never>;
44
49
  }
@@ -1,5 +1,11 @@
1
1
  import { Type } from '@angular/core';
2
- import 'echarts/lib/component/tooltip';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./tooltip.component";
4
+ import * as i2 from "./series-tooltip.component";
5
+ import * as i3 from "@angular/common";
3
6
  export declare const TOOLTIP_MODULE_COMPONENTS: Type<any>[];
4
7
  export declare class CovalentTooltipEchartsModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<CovalentTooltipEchartsModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CovalentTooltipEchartsModule, [typeof i1.TdChartTooltipComponent, typeof i1.TdChartTooltipFormatterDirective, typeof i2.TdSeriesTooltipComponent], [typeof i3.CommonModule], [typeof i1.TdChartTooltipComponent, typeof i1.TdChartTooltipFormatterDirective, typeof i2.TdSeriesTooltipComponent]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<CovalentTooltipEchartsModule>;
5
11
  }
@@ -1,4 +1,5 @@
1
1
  /**
2
2
  * Generated bundle index. Do not edit.
3
3
  */
4
+ /// <amd-module name="@covalent/echarts/tree" />
4
5
  export * from './index';
package/tree/package.json CHANGED
@@ -1,11 +1,10 @@
1
1
  {
2
- "main": "../bundles/covalent-echarts-tree.umd.js",
3
- "module": "../fesm2015/covalent-echarts-tree.js",
4
- "es2015": "../fesm2015/covalent-echarts-tree.js",
5
- "esm2015": "../esm2015/tree/covalent-echarts-tree.js",
6
- "fesm2015": "../fesm2015/covalent-echarts-tree.js",
2
+ "module": "../fesm2015/covalent-echarts-tree.mjs",
3
+ "es2020": "../fesm2020/covalent-echarts-tree.mjs",
4
+ "esm2020": "../esm2020/tree/covalent-echarts-tree.mjs",
5
+ "fesm2020": "../fesm2020/covalent-echarts-tree.mjs",
6
+ "fesm2015": "../fesm2015/covalent-echarts-tree.mjs",
7
7
  "typings": "covalent-echarts-tree.d.ts",
8
- "metadata": "covalent-echarts-tree.metadata.json",
9
8
  "sideEffects": false,
10
9
  "name": "@covalent/echarts/tree"
11
- }
10
+ }
@@ -1,4 +1,5 @@
1
1
  import { TdChartOptionsService, ITdItemStyle, TdMarkPointSymbol, ITdLabel, ITdLineStyle, ITdSeries, TdSeriesDirective, ITdEmphasis, ITdShadow } from '@covalent/echarts/base';
2
+ import * as i0 from "@angular/core";
2
3
  /**
3
4
  * ECHART OPTION DOCS
4
5
  * https://ecomfe.github.io/echarts-doc/public/en/option.html#series-tree
@@ -76,5 +77,7 @@ export declare class TdChartSeriesTreeComponent extends TdSeriesDirective implem
76
77
  emphasis: ITdTreeEmphasis;
77
78
  constructor(_optionsService: TdChartOptionsService);
78
79
  getConfig(): any;
80
+ static ɵfac: i0.ɵɵFactoryDeclaration<TdChartSeriesTreeComponent, never>;
81
+ static ɵcmp: i0.ɵɵComponentDeclaration<TdChartSeriesTreeComponent, "td-chart-series[td-tree]", never, { "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"; }, {}, never, never>;
79
82
  }
80
83
  export {};
@@ -1,5 +1,10 @@
1
1
  import { Type } from '@angular/core';
2
- import 'echarts/lib/chart/tree';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./tree.component";
4
+ import * as i2 from "@angular/common";
3
5
  export declare const TREE_MODULE_COMPONENTS: Type<any>[];
4
6
  export declare class CovalentTreeEchartsModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<CovalentTreeEchartsModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CovalentTreeEchartsModule, [typeof i1.TdChartSeriesTreeComponent], [typeof i2.CommonModule], [typeof i1.TdChartSeriesTreeComponent]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<CovalentTreeEchartsModule>;
5
10
  }
@@ -1,4 +1,5 @@
1
1
  /**
2
2
  * Generated bundle index. Do not edit.
3
3
  */
4
+ /// <amd-module name="@covalent/echarts/treemap" />
4
5
  export * from './index';
@@ -1,11 +1,10 @@
1
1
  {
2
- "main": "../bundles/covalent-echarts-treemap.umd.js",
3
- "module": "../fesm2015/covalent-echarts-treemap.js",
4
- "es2015": "../fesm2015/covalent-echarts-treemap.js",
5
- "esm2015": "../esm2015/treemap/covalent-echarts-treemap.js",
6
- "fesm2015": "../fesm2015/covalent-echarts-treemap.js",
2
+ "module": "../fesm2015/covalent-echarts-treemap.mjs",
3
+ "es2020": "../fesm2020/covalent-echarts-treemap.mjs",
4
+ "esm2020": "../esm2020/treemap/covalent-echarts-treemap.mjs",
5
+ "fesm2020": "../fesm2020/covalent-echarts-treemap.mjs",
6
+ "fesm2015": "../fesm2015/covalent-echarts-treemap.mjs",
7
7
  "typings": "covalent-echarts-treemap.d.ts",
8
- "metadata": "covalent-echarts-treemap.metadata.json",
9
8
  "sideEffects": false,
10
9
  "name": "@covalent/echarts/treemap"
11
- }
10
+ }
@@ -1,4 +1,5 @@
1
1
  import { TdChartOptionsService, ITdItemStyle, ITdSeriesTooltip, ITdLabel, ITdSeries, TdSeriesDirective, ITdEmphasis, ITdShadow } from '@covalent/echarts/base';
2
+ import * as i0 from "@angular/core";
2
3
  /**
3
4
  * ECHART OPTION DOCS
4
5
  * https://ecomfe.github.io/echarts-examples/public/index.html#chart-type-treemap
@@ -127,5 +128,7 @@ export declare class TdChartSeriesTreemapComponent extends TdSeriesDirective imp
127
128
  tooltip: ITdSeriesTooltip;
128
129
  constructor(_optionsService: TdChartOptionsService);
129
130
  getConfig(): any;
131
+ static ɵfac: i0.ɵɵFactoryDeclaration<TdChartSeriesTreemapComponent, never>;
132
+ static ɵcmp: i0.ɵɵComponentDeclaration<TdChartSeriesTreemapComponent, "td-chart-series[td-treemap]", never, { "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"; "squareRatio": "squareRatio"; "leafDepth": "leafDepth"; "drillDownIcon": "drillDownIcon"; "roam": "roam"; "nodeClick": "nodeClick"; "zoomToNodeRatio": "zoomToNodeRatio"; "levels": "levels"; "silent": "silent"; "visualDimension": "visualDimension"; "visualMin": "visualMin"; "visualMax": "visualMax"; "colorAlpha": "colorAlpha"; "colorSaturation": "colorSaturation"; "colorMappingBy": "colorMappingBy"; "visibleMin": "visibleMin"; "childrenVisibleMin": "childrenVisibleMin"; "itemStyle": "itemStyle"; "label": "label"; "upperLabel": "upperLabel"; "breadcrumb": "breadcrumb"; "emphasis": "emphasis"; }, {}, never, never>;
130
133
  }
131
134
  export {};