@delon/chart 12.4.1 → 13.0.0

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 (345) hide show
  1. package/bar/bar.component.d.ts +4 -1
  2. package/bar/bar.d.ts +1 -0
  3. package/bar/bar.module.d.ts +8 -0
  4. package/bar/package.json +5 -6
  5. package/card/card.component.d.ts +7 -4
  6. package/card/card.d.ts +1 -0
  7. package/card/card.module.d.ts +9 -0
  8. package/card/package.json +5 -6
  9. package/card/style/index.less +11 -0
  10. package/{custom/g2Custom.d.ts → chart-echarts/chart-echarts.d.ts} +1 -0
  11. package/chart-echarts/echarts.component.d.ts +3 -0
  12. package/chart-echarts/echarts.module.d.ts +7 -0
  13. package/chart-echarts/echarts.service.d.ts +3 -0
  14. package/chart-echarts/package.json +6 -7
  15. package/chart.d.ts +1 -0
  16. package/{chart-echarts/delon-chart-chart-echarts.d.ts → core/core.d.ts} +1 -0
  17. package/core/g2.base.component.d.ts +4 -1
  18. package/core/g2.servicce.d.ts +3 -0
  19. package/core/package.json +6 -7
  20. package/custom/custom.component.d.ts +4 -1
  21. package/{core/delon-chart-core.d.ts → custom/custom.d.ts} +1 -0
  22. package/custom/custom.module.d.ts +7 -0
  23. package/custom/package.json +6 -7
  24. package/esm2020/bar/bar.component.mjs +143 -0
  25. package/{esm2015/bar/bar.js → esm2020/bar/bar.mjs} +0 -0
  26. package/esm2020/bar/bar.module.mjs +21 -0
  27. package/{esm2015/bar/public_api.js → esm2020/bar/public_api.mjs} +0 -0
  28. package/esm2020/card/card.component.mjs +55 -0
  29. package/{esm2015/card/card.js → esm2020/card/card.mjs} +0 -0
  30. package/esm2020/card/card.module.mjs +22 -0
  31. package/{esm2015/card/public_api.js → esm2020/card/public_api.mjs} +0 -0
  32. package/esm2020/chart-echarts/chart-echarts.mjs +5 -0
  33. package/esm2020/chart-echarts/echarts.component.mjs +162 -0
  34. package/esm2020/chart-echarts/echarts.module.mjs +20 -0
  35. package/esm2020/chart-echarts/echarts.service.mjs +60 -0
  36. package/{esm2015/chart-echarts/echarts.types.js → esm2020/chart-echarts/echarts.types.mjs} +0 -0
  37. package/{esm2015/chart-echarts/public_api.js → esm2020/chart-echarts/public_api.mjs} +0 -0
  38. package/{esm2015/chart.js → esm2020/chart.mjs} +0 -0
  39. package/esm2020/core/core.mjs +5 -0
  40. package/esm2020/core/g2.base.component.mjs +109 -0
  41. package/esm2020/core/g2.servicce.mjs +54 -0
  42. package/{esm2015/core/public_api.js → esm2020/core/public_api.mjs} +0 -0
  43. package/{esm2015/core/types/interaction.js → esm2020/core/types/interaction.mjs} +0 -0
  44. package/{esm2015/core/types/time.js → esm2020/core/types/time.mjs} +0 -0
  45. package/esm2020/core/utils.mjs +21 -0
  46. package/esm2020/custom/custom.component.mjs +70 -0
  47. package/esm2020/custom/custom.mjs +5 -0
  48. package/esm2020/custom/custom.module.mjs +20 -0
  49. package/{esm2015/custom/public_api.js → esm2020/custom/public_api.mjs} +0 -0
  50. package/esm2020/gauge/gauge.component.mjs +169 -0
  51. package/{esm2015/gauge/gauge.js → esm2020/gauge/gauge.mjs} +0 -0
  52. package/esm2020/gauge/gauge.module.mjs +20 -0
  53. package/{esm2015/gauge/public_api.js → esm2020/gauge/public_api.mjs} +0 -0
  54. package/esm2020/mini-area/mini-area.component.mjs +133 -0
  55. package/{esm2015/mini-area/mini-area.js → esm2020/mini-area/mini-area.mjs} +0 -0
  56. package/esm2020/mini-area/mini-area.module.mjs +19 -0
  57. package/{esm2015/mini-area/public_api.js → esm2020/mini-area/public_api.mjs} +0 -0
  58. package/esm2020/mini-bar/mini-bar.component.mjs +100 -0
  59. package/{esm2015/mini-bar/mini-bar.js → esm2020/mini-bar/mini-bar.mjs} +0 -0
  60. package/esm2020/mini-bar/mini-bar.module.mjs +19 -0
  61. package/{esm2015/mini-bar/public_api.js → esm2020/mini-bar/public_api.mjs} +0 -0
  62. package/esm2020/mini-progress/mini-progress.component.mjs +46 -0
  63. package/{esm2015/mini-progress/mini-progress.js → esm2020/mini-progress/mini-progress.mjs} +0 -0
  64. package/esm2020/mini-progress/mini-progress.module.mjs +21 -0
  65. package/{esm2015/mini-progress/public_api.js → esm2020/mini-progress/public_api.mjs} +0 -0
  66. package/esm2020/number-info/number-info.component.mjs +45 -0
  67. package/{esm2015/number-info/number-info.js → esm2020/number-info/number-info.mjs} +0 -0
  68. package/esm2020/number-info/number-info.module.mjs +21 -0
  69. package/{esm2015/number-info/public_api.js → esm2020/number-info/public_api.mjs} +0 -0
  70. package/esm2020/pie/pie.component.mjs +215 -0
  71. package/{esm2015/pie/pie.js → esm2020/pie/pie.mjs} +0 -0
  72. package/esm2020/pie/pie.module.mjs +22 -0
  73. package/{esm2015/pie/public_api.js → esm2020/pie/public_api.mjs} +0 -0
  74. package/{esm2015/public_api.js → esm2020/public_api.mjs} +0 -0
  75. package/{esm2015/radar/public_api.js → esm2020/radar/public_api.mjs} +0 -0
  76. package/esm2020/radar/radar.component.mjs +148 -0
  77. package/{esm2015/radar/radar.js → esm2020/radar/radar.mjs} +0 -0
  78. package/esm2020/radar/radar.module.mjs +22 -0
  79. package/{esm2015/single-bar/public_api.js → esm2020/single-bar/public_api.mjs} +0 -0
  80. package/esm2020/single-bar/single-bar.component.mjs +126 -0
  81. package/{esm2015/single-bar/single-bar.js → esm2020/single-bar/single-bar.mjs} +0 -0
  82. package/esm2020/single-bar/single-bar.module.mjs +19 -0
  83. package/{esm2015/tag-cloud/public_api.js → esm2020/tag-cloud/public_api.mjs} +0 -0
  84. package/esm2020/tag-cloud/tag-cloud.component.mjs +161 -0
  85. package/{esm2015/tag-cloud/tag-cloud.js → esm2020/tag-cloud/tag-cloud.mjs} +0 -0
  86. package/esm2020/tag-cloud/tag-cloud.module.mjs +20 -0
  87. package/{esm2015/timeline/public_api.js → esm2020/timeline/public_api.mjs} +0 -0
  88. package/esm2020/timeline/timeline.component.mjs +204 -0
  89. package/{esm2015/timeline/timeline.js → esm2020/timeline/timeline.mjs} +0 -0
  90. package/esm2020/timeline/timeline.module.mjs +21 -0
  91. package/{esm2015/trend/public_api.js → esm2020/trend/public_api.mjs} +0 -0
  92. package/esm2020/trend/trend.component.mjs +52 -0
  93. package/{esm2015/trend/trend.js → esm2020/trend/trend.mjs} +0 -0
  94. package/esm2020/trend/trend.module.mjs +20 -0
  95. package/{esm2015/water-wave/public_api.js → esm2020/water-wave/public_api.mjs} +0 -0
  96. package/esm2020/water-wave/water-wave.component.mjs +221 -0
  97. package/{esm2015/water-wave/water-wave.js → esm2020/water-wave/water-wave.mjs} +0 -0
  98. package/esm2020/water-wave/water-wave.module.mjs +20 -0
  99. package/fesm2015/{bar.js → bar.mjs} +57 -34
  100. package/fesm2015/bar.mjs.map +1 -0
  101. package/fesm2015/card.mjs +81 -0
  102. package/fesm2015/card.mjs.map +1 -0
  103. package/fesm2015/{delon-chart-chart-echarts.js → chart-echarts.mjs} +62 -53
  104. package/fesm2015/chart-echarts.mjs.map +1 -0
  105. package/fesm2015/{chart.js → chart.mjs} +1 -1
  106. package/fesm2015/chart.mjs.map +1 -0
  107. package/fesm2015/{delon-chart-core.js → core.mjs} +23 -29
  108. package/fesm2015/core.mjs.map +1 -0
  109. package/fesm2015/custom.mjs +94 -0
  110. package/fesm2015/custom.mjs.map +1 -0
  111. package/fesm2015/{gauge.js → gauge.mjs} +46 -31
  112. package/fesm2015/gauge.mjs.map +1 -0
  113. package/fesm2015/mini-area.mjs +156 -0
  114. package/fesm2015/mini-area.mjs.map +1 -0
  115. package/fesm2015/mini-bar.mjs +123 -0
  116. package/fesm2015/mini-bar.mjs.map +1 -0
  117. package/fesm2015/mini-progress.mjs +71 -0
  118. package/fesm2015/mini-progress.mjs.map +1 -0
  119. package/fesm2015/number-info.mjs +70 -0
  120. package/fesm2015/number-info.mjs.map +1 -0
  121. package/fesm2015/pie.mjs +241 -0
  122. package/fesm2015/pie.mjs.map +1 -0
  123. package/fesm2015/{radar.js → radar.mjs} +43 -33
  124. package/fesm2015/radar.mjs.map +1 -0
  125. package/fesm2015/single-bar.mjs +147 -0
  126. package/fesm2015/single-bar.mjs.map +1 -0
  127. package/fesm2015/{tag-cloud.js → tag-cloud.mjs} +39 -26
  128. package/fesm2015/tag-cloud.mjs.map +1 -0
  129. package/fesm2015/{timeline.js → timeline.mjs} +64 -36
  130. package/fesm2015/timeline.mjs.map +1 -0
  131. package/fesm2015/trend.mjs +76 -0
  132. package/fesm2015/trend.mjs.map +1 -0
  133. package/fesm2015/{water-wave.js → water-wave.mjs} +38 -37
  134. package/fesm2015/water-wave.mjs.map +1 -0
  135. package/fesm2020/bar.mjs +168 -0
  136. package/fesm2020/bar.mjs.map +1 -0
  137. package/fesm2020/card.mjs +81 -0
  138. package/fesm2020/card.mjs.map +1 -0
  139. package/fesm2020/chart-echarts.mjs +242 -0
  140. package/fesm2020/chart-echarts.mjs.map +1 -0
  141. package/fesm2020/chart.mjs +7 -0
  142. package/fesm2020/chart.mjs.map +1 -0
  143. package/fesm2020/core.mjs +187 -0
  144. package/fesm2020/core.mjs.map +1 -0
  145. package/fesm2020/custom.mjs +94 -0
  146. package/fesm2020/custom.mjs.map +1 -0
  147. package/fesm2020/gauge.mjs +193 -0
  148. package/fesm2020/gauge.mjs.map +1 -0
  149. package/fesm2020/mini-area.mjs +156 -0
  150. package/fesm2020/mini-area.mjs.map +1 -0
  151. package/fesm2020/mini-bar.mjs +123 -0
  152. package/fesm2020/mini-bar.mjs.map +1 -0
  153. package/fesm2020/mini-progress.mjs +71 -0
  154. package/fesm2020/mini-progress.mjs.map +1 -0
  155. package/fesm2020/number-info.mjs +70 -0
  156. package/fesm2020/number-info.mjs.map +1 -0
  157. package/fesm2020/pie.mjs +241 -0
  158. package/fesm2020/pie.mjs.map +1 -0
  159. package/fesm2020/radar.mjs +174 -0
  160. package/fesm2020/radar.mjs.map +1 -0
  161. package/fesm2020/single-bar.mjs +149 -0
  162. package/fesm2020/single-bar.mjs.map +1 -0
  163. package/fesm2020/tag-cloud.mjs +185 -0
  164. package/fesm2020/tag-cloud.mjs.map +1 -0
  165. package/fesm2020/timeline.mjs +229 -0
  166. package/fesm2020/timeline.mjs.map +1 -0
  167. package/fesm2020/trend.mjs +76 -0
  168. package/fesm2020/trend.mjs.map +1 -0
  169. package/fesm2020/water-wave.mjs +245 -0
  170. package/fesm2020/water-wave.mjs.map +1 -0
  171. package/gauge/gauge.component.d.ts +8 -5
  172. package/gauge/gauge.d.ts +1 -0
  173. package/gauge/gauge.module.d.ts +7 -0
  174. package/gauge/package.json +5 -6
  175. package/mini-area/mini-area.component.d.ts +3 -0
  176. package/mini-area/mini-area.d.ts +1 -0
  177. package/mini-area/mini-area.module.d.ts +6 -0
  178. package/mini-area/package.json +5 -6
  179. package/mini-bar/mini-bar.component.d.ts +3 -0
  180. package/mini-bar/mini-bar.d.ts +1 -0
  181. package/mini-bar/mini-bar.module.d.ts +6 -0
  182. package/mini-bar/package.json +5 -6
  183. package/mini-progress/mini-progress.component.d.ts +6 -3
  184. package/mini-progress/mini-progress.d.ts +1 -0
  185. package/mini-progress/mini-progress.module.d.ts +8 -0
  186. package/mini-progress/package.json +5 -6
  187. package/mini-progress/style/index.less +5 -0
  188. package/number-info/number-info.component.d.ts +9 -6
  189. package/number-info/number-info.d.ts +1 -0
  190. package/number-info/number-info.module.d.ts +8 -0
  191. package/number-info/package.json +5 -6
  192. package/number-info/style/index.less +12 -0
  193. package/package.json +160 -12
  194. package/pie/package.json +5 -6
  195. package/pie/pie.component.d.ts +8 -5
  196. package/pie/pie.d.ts +1 -0
  197. package/pie/pie.module.d.ts +9 -0
  198. package/pie/style/index.less +14 -0
  199. package/radar/package.json +5 -6
  200. package/radar/radar.component.d.ts +4 -1
  201. package/radar/radar.d.ts +1 -0
  202. package/radar/radar.module.d.ts +9 -0
  203. package/radar/style/index.less +6 -0
  204. package/single-bar/package.json +5 -6
  205. package/single-bar/single-bar.component.d.ts +4 -1
  206. package/single-bar/single-bar.d.ts +1 -0
  207. package/single-bar/single-bar.module.d.ts +6 -0
  208. package/tag-cloud/package.json +5 -6
  209. package/tag-cloud/tag-cloud.component.d.ts +3 -0
  210. package/tag-cloud/tag-cloud.d.ts +1 -0
  211. package/tag-cloud/tag-cloud.module.d.ts +7 -0
  212. package/timeline/package.json +5 -6
  213. package/timeline/timeline.component.d.ts +5 -2
  214. package/timeline/timeline.d.ts +1 -0
  215. package/timeline/timeline.module.d.ts +8 -0
  216. package/trend/package.json +5 -6
  217. package/trend/style/index.less +6 -0
  218. package/trend/trend.component.d.ts +4 -1
  219. package/trend/trend.d.ts +1 -0
  220. package/trend/trend.module.d.ts +7 -0
  221. package/water-wave/package.json +5 -6
  222. package/water-wave/style/index.less +4 -0
  223. package/water-wave/water-wave.component.d.ts +5 -2
  224. package/water-wave/water-wave.d.ts +1 -0
  225. package/water-wave/water-wave.module.d.ts +7 -0
  226. package/bar/bar.metadata.json +0 -1
  227. package/bundles/bar.umd.js +0 -471
  228. package/bundles/bar.umd.js.map +0 -1
  229. package/bundles/card.umd.js +0 -408
  230. package/bundles/card.umd.js.map +0 -1
  231. package/bundles/chart.umd.js +0 -19
  232. package/bundles/chart.umd.js.map +0 -1
  233. package/bundles/delon-chart-chart-echarts.umd.js +0 -617
  234. package/bundles/delon-chart-chart-echarts.umd.js.map +0 -1
  235. package/bundles/delon-chart-core.umd.js +0 -550
  236. package/bundles/delon-chart-core.umd.js.map +0 -1
  237. package/bundles/g2Custom.umd.js +0 -407
  238. package/bundles/g2Custom.umd.js.map +0 -1
  239. package/bundles/gauge.umd.js +0 -511
  240. package/bundles/gauge.umd.js.map +0 -1
  241. package/bundles/mini-area.umd.js +0 -471
  242. package/bundles/mini-area.umd.js.map +0 -1
  243. package/bundles/mini-bar.umd.js +0 -444
  244. package/bundles/mini-bar.umd.js.map +0 -1
  245. package/bundles/mini-progress.umd.js +0 -401
  246. package/bundles/mini-progress.umd.js.map +0 -1
  247. package/bundles/number-info.umd.js +0 -392
  248. package/bundles/number-info.umd.js.map +0 -1
  249. package/bundles/pie.umd.js +0 -567
  250. package/bundles/pie.umd.js.map +0 -1
  251. package/bundles/radar.umd.js +0 -497
  252. package/bundles/radar.umd.js.map +0 -1
  253. package/bundles/single-bar.umd.js +0 -464
  254. package/bundles/single-bar.umd.js.map +0 -1
  255. package/bundles/tag-cloud.umd.js +0 -495
  256. package/bundles/tag-cloud.umd.js.map +0 -1
  257. package/bundles/timeline.umd.js +0 -524
  258. package/bundles/timeline.umd.js.map +0 -1
  259. package/bundles/trend.umd.js +0 -391
  260. package/bundles/trend.umd.js.map +0 -1
  261. package/bundles/water-wave.umd.js +0 -587
  262. package/bundles/water-wave.umd.js.map +0 -1
  263. package/card/card.metadata.json +0 -1
  264. package/chart-echarts/delon-chart-chart-echarts.metadata.json +0 -1
  265. package/chart.metadata.json +0 -1
  266. package/core/delon-chart-core.metadata.json +0 -1
  267. package/custom/g2Custom.metadata.json +0 -1
  268. package/esm2015/bar/bar.component.js +0 -124
  269. package/esm2015/bar/bar.module.js +0 -16
  270. package/esm2015/card/card.component.js +0 -52
  271. package/esm2015/card/card.module.js +0 -17
  272. package/esm2015/chart-echarts/delon-chart-chart-echarts.js +0 -5
  273. package/esm2015/chart-echarts/echarts.component.js +0 -152
  274. package/esm2015/chart-echarts/echarts.module.js +0 -15
  275. package/esm2015/chart-echarts/echarts.service.js +0 -64
  276. package/esm2015/core/delon-chart-core.js +0 -5
  277. package/esm2015/core/g2.base.component.js +0 -110
  278. package/esm2015/core/g2.servicce.js +0 -58
  279. package/esm2015/core/utils.js +0 -15
  280. package/esm2015/custom/custom.component.js +0 -58
  281. package/esm2015/custom/custom.module.js +0 -15
  282. package/esm2015/custom/g2Custom.js +0 -5
  283. package/esm2015/gauge/gauge.component.js +0 -158
  284. package/esm2015/gauge/gauge.module.js +0 -15
  285. package/esm2015/mini-area/mini-area.component.js +0 -117
  286. package/esm2015/mini-area/mini-area.module.js +0 -14
  287. package/esm2015/mini-bar/mini-bar.component.js +0 -90
  288. package/esm2015/mini-bar/mini-bar.module.js +0 -14
  289. package/esm2015/mini-progress/mini-progress.component.js +0 -50
  290. package/esm2015/mini-progress/mini-progress.module.js +0 -16
  291. package/esm2015/number-info/number-info.component.js +0 -40
  292. package/esm2015/number-info/number-info.module.js +0 -16
  293. package/esm2015/pie/pie.component.js +0 -197
  294. package/esm2015/pie/pie.module.js +0 -17
  295. package/esm2015/radar/radar.component.js +0 -142
  296. package/esm2015/radar/radar.module.js +0 -17
  297. package/esm2015/single-bar/single-bar.component.js +0 -111
  298. package/esm2015/single-bar/single-bar.module.js +0 -14
  299. package/esm2015/tag-cloud/tag-cloud.component.js +0 -142
  300. package/esm2015/tag-cloud/tag-cloud.module.js +0 -15
  301. package/esm2015/timeline/timeline.component.js +0 -178
  302. package/esm2015/timeline/timeline.module.js +0 -16
  303. package/esm2015/trend/trend.component.js +0 -42
  304. package/esm2015/trend/trend.module.js +0 -15
  305. package/esm2015/water-wave/water-wave.component.js +0 -224
  306. package/esm2015/water-wave/water-wave.module.js +0 -15
  307. package/fesm2015/bar.js.map +0 -1
  308. package/fesm2015/card.js +0 -74
  309. package/fesm2015/card.js.map +0 -1
  310. package/fesm2015/chart.js.map +0 -1
  311. package/fesm2015/delon-chart-chart-echarts.js.map +0 -1
  312. package/fesm2015/delon-chart-core.js.map +0 -1
  313. package/fesm2015/g2Custom.js +0 -78
  314. package/fesm2015/g2Custom.js.map +0 -1
  315. package/fesm2015/gauge.js.map +0 -1
  316. package/fesm2015/mini-area.js +0 -136
  317. package/fesm2015/mini-area.js.map +0 -1
  318. package/fesm2015/mini-bar.js +0 -109
  319. package/fesm2015/mini-bar.js.map +0 -1
  320. package/fesm2015/mini-progress.js +0 -70
  321. package/fesm2015/mini-progress.js.map +0 -1
  322. package/fesm2015/number-info.js +0 -61
  323. package/fesm2015/number-info.js.map +0 -1
  324. package/fesm2015/pie.js +0 -219
  325. package/fesm2015/pie.js.map +0 -1
  326. package/fesm2015/radar.js.map +0 -1
  327. package/fesm2015/single-bar.js +0 -130
  328. package/fesm2015/single-bar.js.map +0 -1
  329. package/fesm2015/tag-cloud.js.map +0 -1
  330. package/fesm2015/timeline.js.map +0 -1
  331. package/fesm2015/trend.js +0 -62
  332. package/fesm2015/trend.js.map +0 -1
  333. package/fesm2015/water-wave.js.map +0 -1
  334. package/gauge/gauge.metadata.json +0 -1
  335. package/mini-area/mini-area.metadata.json +0 -1
  336. package/mini-bar/mini-bar.metadata.json +0 -1
  337. package/mini-progress/mini-progress.metadata.json +0 -1
  338. package/number-info/number-info.metadata.json +0 -1
  339. package/pie/pie.metadata.json +0 -1
  340. package/radar/radar.metadata.json +0 -1
  341. package/single-bar/single-bar.metadata.json +0 -1
  342. package/tag-cloud/tag-cloud.metadata.json +0 -1
  343. package/timeline/timeline.metadata.json +0 -1
  344. package/trend/trend.metadata.json +0 -1
  345. package/water-wave/water-wave.metadata.json +0 -1
@@ -1,617 +0,0 @@
1
- /**
2
- * @license ng-alain(cipchk@qq.com) v12.4.1
3
- * (c) 2020 cipchk https://ng-alain.com/
4
- * License: MIT
5
- */
6
- (function (global, factory) {
7
- typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/core'), require('rxjs'), require('@delon/util/config'), require('@delon/util/other'), require('@angular/cdk/platform'), require('rxjs/operators'), require('@delon/util/decorator'), require('@angular/common'), require('ng-zorro-antd/skeleton')) :
8
- typeof define === 'function' && define.amd ? define('@delon/chart/chart-echarts', ['exports', '@angular/core', 'rxjs', '@delon/util/config', '@delon/util/other', '@angular/cdk/platform', 'rxjs/operators', '@delon/util/decorator', '@angular/common', 'ng-zorro-antd/skeleton'], factory) :
9
- (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory((global.delon = global.delon || {}, global.delon.chart = global.delon.chart || {}, global.delon.chart["chart-echarts"] = {}), global.ng.core, global.rxjs, global.i1, global.i2, global.ng.cdk.platform, global.rxjs.operators, global.decorator, global.ng.common, global.skeleton));
10
- })(this, (function (exports, i0, rxjs, i1, i2, platform, operators, decorator, common, skeleton) { 'use strict';
11
-
12
- function _interopNamespace(e) {
13
- if (e && e.__esModule) return e;
14
- var n = Object.create(null);
15
- if (e) {
16
- Object.keys(e).forEach(function (k) {
17
- if (k !== 'default') {
18
- var d = Object.getOwnPropertyDescriptor(e, k);
19
- Object.defineProperty(n, k, d.get ? d : {
20
- enumerable: true,
21
- get: function () { return e[k]; }
22
- });
23
- }
24
- });
25
- }
26
- n["default"] = e;
27
- return Object.freeze(n);
28
- }
29
-
30
- var i0__namespace = /*#__PURE__*/_interopNamespace(i0);
31
- var i1__namespace = /*#__PURE__*/_interopNamespace(i1);
32
- var i2__namespace = /*#__PURE__*/_interopNamespace(i2);
33
-
34
- var ChartEChartsService = /** @class */ (function () {
35
- function ChartEChartsService(cogSrv, lazySrv) {
36
- this.cogSrv = cogSrv;
37
- this.lazySrv = lazySrv;
38
- this.loading = false;
39
- this.loaded = false;
40
- this.notify$ = new rxjs.Subject();
41
- this.cog = { theme: '' };
42
- }
43
- Object.defineProperty(ChartEChartsService.prototype, "cog", {
44
- get: function () {
45
- return this._cog;
46
- },
47
- set: function (val) {
48
- this._cog = this.cogSrv.merge('chart', {
49
- theme: '',
50
- echartsLib: 'https://cdnjs.cloudflare.com/ajax/libs/echarts/5.1.0/echarts.min.js'
51
- }, val);
52
- },
53
- enumerable: false,
54
- configurable: true
55
- });
56
- ChartEChartsService.prototype.libLoad = function () {
57
- var _this = this;
58
- if (this.loading) {
59
- if (this.loaded) {
60
- this.notify$.next();
61
- }
62
- return this;
63
- }
64
- this.loading = true;
65
- this.lazySrv
66
- .load(this.cog.echartsLib)
67
- .then(function () {
68
- var extensions = _this.cog.echartsExtensions;
69
- if (Array.isArray(extensions) && extensions.length > 0) {
70
- return _this.lazySrv.load(extensions).then(function () { return true; });
71
- }
72
- return Promise.resolve(true);
73
- })
74
- .then(function () {
75
- _this.loaded = true;
76
- _this.notify$.next();
77
- });
78
- return this;
79
- };
80
- Object.defineProperty(ChartEChartsService.prototype, "notify", {
81
- get: function () {
82
- return this.notify$.asObservable();
83
- },
84
- enumerable: false,
85
- configurable: true
86
- });
87
- ChartEChartsService.prototype.ngOnDestroy = function () {
88
- this.notify$.unsubscribe();
89
- };
90
- return ChartEChartsService;
91
- }());
92
- ChartEChartsService.ɵprov = i0__namespace.ɵɵdefineInjectable({ factory: function ChartEChartsService_Factory() { return new ChartEChartsService(i0__namespace.ɵɵinject(i1__namespace.AlainConfigService), i0__namespace.ɵɵinject(i2__namespace.LazyService)); }, token: ChartEChartsService, providedIn: "root" });
93
- ChartEChartsService.decorators = [
94
- { type: i0.Injectable, args: [{ providedIn: 'root' },] }
95
- ];
96
- ChartEChartsService.ctorParameters = function () { return [
97
- { type: i1.AlainConfigService },
98
- { type: i2.LazyService }
99
- ]; };
100
-
101
- /*! *****************************************************************************
102
- Copyright (c) Microsoft Corporation.
103
-
104
- Permission to use, copy, modify, and/or distribute this software for any
105
- purpose with or without fee is hereby granted.
106
-
107
- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
108
- REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
109
- AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
110
- INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
111
- LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
112
- OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
113
- PERFORMANCE OF THIS SOFTWARE.
114
- ***************************************************************************** */
115
- /* global Reflect, Promise */
116
- var extendStatics = function (d, b) {
117
- extendStatics = Object.setPrototypeOf ||
118
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
119
- function (d, b) { for (var p in b)
120
- if (Object.prototype.hasOwnProperty.call(b, p))
121
- d[p] = b[p]; };
122
- return extendStatics(d, b);
123
- };
124
- function __extends(d, b) {
125
- if (typeof b !== "function" && b !== null)
126
- throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
127
- extendStatics(d, b);
128
- function __() { this.constructor = d; }
129
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
130
- }
131
- var __assign = function () {
132
- __assign = Object.assign || function __assign(t) {
133
- for (var s, i = 1, n = arguments.length; i < n; i++) {
134
- s = arguments[i];
135
- for (var p in s)
136
- if (Object.prototype.hasOwnProperty.call(s, p))
137
- t[p] = s[p];
138
- }
139
- return t;
140
- };
141
- return __assign.apply(this, arguments);
142
- };
143
- function __rest(s, e) {
144
- var t = {};
145
- for (var p in s)
146
- if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
147
- t[p] = s[p];
148
- if (s != null && typeof Object.getOwnPropertySymbols === "function")
149
- for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
150
- if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
151
- t[p[i]] = s[p[i]];
152
- }
153
- return t;
154
- }
155
- function __decorate(decorators, target, key, desc) {
156
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
157
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
158
- r = Reflect.decorate(decorators, target, key, desc);
159
- else
160
- for (var i = decorators.length - 1; i >= 0; i--)
161
- if (d = decorators[i])
162
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
163
- return c > 3 && r && Object.defineProperty(target, key, r), r;
164
- }
165
- function __param(paramIndex, decorator) {
166
- return function (target, key) { decorator(target, key, paramIndex); };
167
- }
168
- function __metadata(metadataKey, metadataValue) {
169
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
170
- return Reflect.metadata(metadataKey, metadataValue);
171
- }
172
- function __awaiter(thisArg, _arguments, P, generator) {
173
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
174
- return new (P || (P = Promise))(function (resolve, reject) {
175
- function fulfilled(value) { try {
176
- step(generator.next(value));
177
- }
178
- catch (e) {
179
- reject(e);
180
- } }
181
- function rejected(value) { try {
182
- step(generator["throw"](value));
183
- }
184
- catch (e) {
185
- reject(e);
186
- } }
187
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
188
- step((generator = generator.apply(thisArg, _arguments || [])).next());
189
- });
190
- }
191
- function __generator(thisArg, body) {
192
- var _ = { label: 0, sent: function () { if (t[0] & 1)
193
- throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
194
- return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function () { return this; }), g;
195
- function verb(n) { return function (v) { return step([n, v]); }; }
196
- function step(op) {
197
- if (f)
198
- throw new TypeError("Generator is already executing.");
199
- while (_)
200
- try {
201
- if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done)
202
- return t;
203
- if (y = 0, t)
204
- op = [op[0] & 2, t.value];
205
- switch (op[0]) {
206
- case 0:
207
- case 1:
208
- t = op;
209
- break;
210
- case 4:
211
- _.label++;
212
- return { value: op[1], done: false };
213
- case 5:
214
- _.label++;
215
- y = op[1];
216
- op = [0];
217
- continue;
218
- case 7:
219
- op = _.ops.pop();
220
- _.trys.pop();
221
- continue;
222
- default:
223
- if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) {
224
- _ = 0;
225
- continue;
226
- }
227
- if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) {
228
- _.label = op[1];
229
- break;
230
- }
231
- if (op[0] === 6 && _.label < t[1]) {
232
- _.label = t[1];
233
- t = op;
234
- break;
235
- }
236
- if (t && _.label < t[2]) {
237
- _.label = t[2];
238
- _.ops.push(op);
239
- break;
240
- }
241
- if (t[2])
242
- _.ops.pop();
243
- _.trys.pop();
244
- continue;
245
- }
246
- op = body.call(thisArg, _);
247
- }
248
- catch (e) {
249
- op = [6, e];
250
- y = 0;
251
- }
252
- finally {
253
- f = t = 0;
254
- }
255
- if (op[0] & 5)
256
- throw op[1];
257
- return { value: op[0] ? op[1] : void 0, done: true };
258
- }
259
- }
260
- var __createBinding = Object.create ? (function (o, m, k, k2) {
261
- if (k2 === undefined)
262
- k2 = k;
263
- Object.defineProperty(o, k2, { enumerable: true, get: function () { return m[k]; } });
264
- }) : (function (o, m, k, k2) {
265
- if (k2 === undefined)
266
- k2 = k;
267
- o[k2] = m[k];
268
- });
269
- function __exportStar(m, o) {
270
- for (var p in m)
271
- if (p !== "default" && !Object.prototype.hasOwnProperty.call(o, p))
272
- __createBinding(o, m, p);
273
- }
274
- function __values(o) {
275
- var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
276
- if (m)
277
- return m.call(o);
278
- if (o && typeof o.length === "number")
279
- return {
280
- next: function () {
281
- if (o && i >= o.length)
282
- o = void 0;
283
- return { value: o && o[i++], done: !o };
284
- }
285
- };
286
- throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
287
- }
288
- function __read(o, n) {
289
- var m = typeof Symbol === "function" && o[Symbol.iterator];
290
- if (!m)
291
- return o;
292
- var i = m.call(o), r, ar = [], e;
293
- try {
294
- while ((n === void 0 || n-- > 0) && !(r = i.next()).done)
295
- ar.push(r.value);
296
- }
297
- catch (error) {
298
- e = { error: error };
299
- }
300
- finally {
301
- try {
302
- if (r && !r.done && (m = i["return"]))
303
- m.call(i);
304
- }
305
- finally {
306
- if (e)
307
- throw e.error;
308
- }
309
- }
310
- return ar;
311
- }
312
- /** @deprecated */
313
- function __spread() {
314
- for (var ar = [], i = 0; i < arguments.length; i++)
315
- ar = ar.concat(__read(arguments[i]));
316
- return ar;
317
- }
318
- /** @deprecated */
319
- function __spreadArrays() {
320
- for (var s = 0, i = 0, il = arguments.length; i < il; i++)
321
- s += arguments[i].length;
322
- for (var r = Array(s), k = 0, i = 0; i < il; i++)
323
- for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
324
- r[k] = a[j];
325
- return r;
326
- }
327
- function __spreadArray(to, from, pack) {
328
- if (pack || arguments.length === 2)
329
- for (var i = 0, l = from.length, ar; i < l; i++) {
330
- if (ar || !(i in from)) {
331
- if (!ar)
332
- ar = Array.prototype.slice.call(from, 0, i);
333
- ar[i] = from[i];
334
- }
335
- }
336
- return to.concat(ar || Array.prototype.slice.call(from));
337
- }
338
- function __await(v) {
339
- return this instanceof __await ? (this.v = v, this) : new __await(v);
340
- }
341
- function __asyncGenerator(thisArg, _arguments, generator) {
342
- if (!Symbol.asyncIterator)
343
- throw new TypeError("Symbol.asyncIterator is not defined.");
344
- var g = generator.apply(thisArg, _arguments || []), i, q = [];
345
- return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i;
346
- function verb(n) { if (g[n])
347
- i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }
348
- function resume(n, v) { try {
349
- step(g[n](v));
350
- }
351
- catch (e) {
352
- settle(q[0][3], e);
353
- } }
354
- function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }
355
- function fulfill(value) { resume("next", value); }
356
- function reject(value) { resume("throw", value); }
357
- function settle(f, v) { if (f(v), q.shift(), q.length)
358
- resume(q[0][0], q[0][1]); }
359
- }
360
- function __asyncDelegator(o) {
361
- var i, p;
362
- return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i;
363
- function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v; } : f; }
364
- }
365
- function __asyncValues(o) {
366
- if (!Symbol.asyncIterator)
367
- throw new TypeError("Symbol.asyncIterator is not defined.");
368
- var m = o[Symbol.asyncIterator], i;
369
- return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i);
370
- function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }
371
- function settle(resolve, reject, d, v) { Promise.resolve(v).then(function (v) { resolve({ value: v, done: d }); }, reject); }
372
- }
373
- function __makeTemplateObject(cooked, raw) {
374
- if (Object.defineProperty) {
375
- Object.defineProperty(cooked, "raw", { value: raw });
376
- }
377
- else {
378
- cooked.raw = raw;
379
- }
380
- return cooked;
381
- }
382
- ;
383
- var __setModuleDefault = Object.create ? (function (o, v) {
384
- Object.defineProperty(o, "default", { enumerable: true, value: v });
385
- }) : function (o, v) {
386
- o["default"] = v;
387
- };
388
- function __importStar(mod) {
389
- if (mod && mod.__esModule)
390
- return mod;
391
- var result = {};
392
- if (mod != null)
393
- for (var k in mod)
394
- if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k))
395
- __createBinding(result, mod, k);
396
- __setModuleDefault(result, mod);
397
- return result;
398
- }
399
- function __importDefault(mod) {
400
- return (mod && mod.__esModule) ? mod : { default: mod };
401
- }
402
- function __classPrivateFieldGet(receiver, state, kind, f) {
403
- if (kind === "a" && !f)
404
- throw new TypeError("Private accessor was defined without a getter");
405
- if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver))
406
- throw new TypeError("Cannot read private member from an object whose class did not declare it");
407
- return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
408
- }
409
- function __classPrivateFieldSet(receiver, state, value, kind, f) {
410
- if (kind === "m")
411
- throw new TypeError("Private method is not writable");
412
- if (kind === "a" && !f)
413
- throw new TypeError("Private accessor was defined without a setter");
414
- if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver))
415
- throw new TypeError("Cannot write private member to an object whose class did not declare it");
416
- return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
417
- }
418
-
419
- var ChartEChartsComponent = /** @class */ (function () {
420
- function ChartEChartsComponent(srv, cdr, ngZone, platform) {
421
- var _this = this;
422
- this.srv = srv;
423
- this.cdr = cdr;
424
- this.ngZone = ngZone;
425
- this.platform = platform;
426
- this.destroy$ = new rxjs.Subject();
427
- this._chart = null;
428
- this._width = '100%';
429
- this._height = '400px';
430
- this.on = [];
431
- this.events = new i0.EventEmitter();
432
- this.loaded = false;
433
- this.srv.notify
434
- .pipe(operators.takeUntil(this.destroy$), operators.filter(function () { return !_this.loaded; }))
435
- .subscribe(function () { return _this.load(); });
436
- this.theme = srv.cog.echartsTheme;
437
- }
438
- Object.defineProperty(ChartEChartsComponent.prototype, "width", {
439
- set: function (val) {
440
- this._width = typeof val === 'number' ? val + "px" : "" + val;
441
- },
442
- enumerable: false,
443
- configurable: true
444
- });
445
- Object.defineProperty(ChartEChartsComponent.prototype, "height", {
446
- set: function (val) {
447
- this._height = typeof val === 'number' ? val + "px" : "" + val;
448
- },
449
- enumerable: false,
450
- configurable: true
451
- });
452
- Object.defineProperty(ChartEChartsComponent.prototype, "theme", {
453
- set: function (value) {
454
- this._theme = value;
455
- if (this._chart) {
456
- this.install();
457
- }
458
- },
459
- enumerable: false,
460
- configurable: true
461
- });
462
- Object.defineProperty(ChartEChartsComponent.prototype, "initOpt", {
463
- set: function (value) {
464
- this._initOpt = value;
465
- if (this._chart) {
466
- this.install();
467
- }
468
- },
469
- enumerable: false,
470
- configurable: true
471
- });
472
- Object.defineProperty(ChartEChartsComponent.prototype, "option", {
473
- set: function (value) {
474
- this._option = value;
475
- if (this._chart) {
476
- this.setOption(value, true);
477
- }
478
- },
479
- enumerable: false,
480
- configurable: true
481
- });
482
- Object.defineProperty(ChartEChartsComponent.prototype, "chart", {
483
- get: function () {
484
- return this._chart;
485
- },
486
- enumerable: false,
487
- configurable: true
488
- });
489
- ChartEChartsComponent.prototype.emit = function (type, other) {
490
- this.events.emit(Object.assign({ type: type, chart: this.chart }, other));
491
- };
492
- ChartEChartsComponent.prototype.load = function () {
493
- var _this = this;
494
- this.ngZone.run(function () {
495
- _this.loaded = true;
496
- _this.cdr.detectChanges();
497
- });
498
- this.emit('ready');
499
- this.install();
500
- };
501
- ChartEChartsComponent.prototype.install = function () {
502
- this.destroy();
503
- var chart = (this._chart = window.echarts.init(this.node.nativeElement, this._theme, this._initOpt));
504
- this.emit('init');
505
- this.setOption(this._option);
506
- // on
507
- this.on.forEach(function (item) {
508
- if (item.query != null) {
509
- chart.on(item.eventName, item.query, function (event) { return item.handler({ event: event, chart: chart }); });
510
- }
511
- else {
512
- chart.on(item.eventName, function (event) { return item.handler({ event: event, chart: chart }); });
513
- }
514
- });
515
- return this;
516
- };
517
- ChartEChartsComponent.prototype.destroy = function () {
518
- if (this._chart) {
519
- this._chart.dispose();
520
- this.emit('destroy');
521
- }
522
- return this;
523
- };
524
- ChartEChartsComponent.prototype.setOption = function (option, notMerge, lazyUpdate) {
525
- if (notMerge === void 0) { notMerge = false; }
526
- if (lazyUpdate === void 0) { lazyUpdate = false; }
527
- if (this._chart) {
528
- this._chart.setOption(option, notMerge, lazyUpdate);
529
- this.emit('set-option', { option: option });
530
- }
531
- return this;
532
- };
533
- ChartEChartsComponent.prototype.ngOnInit = function () {
534
- var _this = this;
535
- if (!this.platform.isBrowser) {
536
- return;
537
- }
538
- if (window.echarts) {
539
- this.load();
540
- }
541
- else {
542
- this.srv.libLoad();
543
- }
544
- rxjs.fromEvent(window, 'resize')
545
- .pipe(operators.takeUntil(this.destroy$), operators.filter(function () { return !!_this._chart; }), operators.debounceTime(200))
546
- .subscribe(function () { return _this._chart.resize(); });
547
- };
548
- ChartEChartsComponent.prototype.ngOnDestroy = function () {
549
- var _this = this;
550
- this.on.forEach(function (item) { var _a; return (_a = _this._chart) === null || _a === void 0 ? void 0 : _a.off(item.eventName); });
551
- this.destroy$.next();
552
- this.destroy$.complete();
553
- this.destroy();
554
- };
555
- return ChartEChartsComponent;
556
- }());
557
- ChartEChartsComponent.decorators = [
558
- { type: i0.Component, args: [{
559
- selector: 'chart-echarts, [chart-echarts]',
560
- exportAs: 'chartECharts',
561
- template: "\n <nz-skeleton *ngIf=\"!loaded\"></nz-skeleton>\n <div #container [style.width]=\"_width\" [style.height]=\"_height\"></div>\n ",
562
- host: {
563
- '[style.display]': "'inline-block'",
564
- '[style.width]': "_width",
565
- '[style.height]': "_height"
566
- },
567
- preserveWhitespaces: false,
568
- changeDetection: i0.ChangeDetectionStrategy.OnPush,
569
- encapsulation: i0.ViewEncapsulation.None
570
- },] }
571
- ];
572
- ChartEChartsComponent.ctorParameters = function () { return [
573
- { type: ChartEChartsService },
574
- { type: i0.ChangeDetectorRef },
575
- { type: i0.NgZone },
576
- { type: platform.Platform }
577
- ]; };
578
- ChartEChartsComponent.propDecorators = {
579
- node: [{ type: i0.ViewChild, args: ['container', { static: true },] }],
580
- width: [{ type: i0.Input }],
581
- height: [{ type: i0.Input }],
582
- theme: [{ type: i0.Input }],
583
- initOpt: [{ type: i0.Input }],
584
- option: [{ type: i0.Input }],
585
- on: [{ type: i0.Input }],
586
- events: [{ type: i0.Output }]
587
- };
588
- __decorate([
589
- decorator.ZoneOutside()
590
- ], ChartEChartsComponent.prototype, "load", null);
591
-
592
- var COMPONENTS = [ChartEChartsComponent];
593
- var ChartEChartsModule = /** @class */ (function () {
594
- function ChartEChartsModule() {
595
- }
596
- return ChartEChartsModule;
597
- }());
598
- ChartEChartsModule.decorators = [
599
- { type: i0.NgModule, args: [{
600
- imports: [common.CommonModule, skeleton.NzSkeletonModule],
601
- declarations: COMPONENTS,
602
- exports: COMPONENTS
603
- },] }
604
- ];
605
-
606
- /**
607
- * Generated bundle index. Do not edit.
608
- */
609
-
610
- exports.ChartEChartsComponent = ChartEChartsComponent;
611
- exports.ChartEChartsModule = ChartEChartsModule;
612
- exports.ChartEChartsService = ChartEChartsService;
613
-
614
- Object.defineProperty(exports, '__esModule', { value: true });
615
-
616
- }));
617
- //# sourceMappingURL=delon-chart-chart-echarts.umd.js.map