@delon/chart 12.4.2 → 13.0.0-beta.1

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 (360) 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/chart-echarts/delon-chart-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 +5 -6
  15. package/chart.d.ts +1 -0
  16. package/core/delon-chart-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 +5 -6
  20. package/custom/custom.component.d.ts +4 -1
  21. package/custom/custom.module.d.ts +7 -0
  22. package/custom/delon-chart-custom.d.ts +5 -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/{esm2015/chart-echarts/delon-chart-chart-echarts.js → esm2020/chart-echarts/delon-chart-chart-echarts.mjs} +0 -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/{esm2015/core/delon-chart-core.js → esm2020/core/delon-chart-core.mjs} +0 -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.module.mjs +20 -0
  48. package/esm2020/custom/delon-chart-custom.mjs +5 -0
  49. package/{esm2015/custom/public_api.js → esm2020/custom/public_api.mjs} +0 -0
  50. package/{esm2015/mini-progress/mini-progress.js → esm2020/gauge/delon-chart-gauge.mjs} +1 -1
  51. package/esm2020/gauge/gauge.component.mjs +169 -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/delon-chart-mini-area.mjs +5 -0
  55. package/esm2020/mini-area/mini-area.component.mjs +133 -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/delon-chart-mini-bar.mjs +5 -0
  59. package/esm2020/mini-bar/mini-bar.component.mjs +100 -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/{esm2015/gauge/gauge.js → esm2020/mini-progress/delon-chart-mini-progress.mjs} +1 -1
  63. package/esm2020/mini-progress/mini-progress.component.mjs +46 -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/{esm2015/pie/pie.js → esm2020/number-info/delon-chart-number-info.mjs} +1 -1
  67. package/esm2020/number-info/number-info.component.mjs +45 -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/{esm2015/number-info/number-info.js → esm2020/pie/delon-chart-pie.mjs} +1 -1
  71. package/esm2020/pie/pie.component.mjs +215 -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/esm2020/radar/delon-chart-radar.mjs +5 -0
  76. package/{esm2015/radar/public_api.js → esm2020/radar/public_api.mjs} +0 -0
  77. package/esm2020/radar/radar.component.mjs +148 -0
  78. package/esm2020/radar/radar.module.mjs +22 -0
  79. package/esm2020/single-bar/delon-chart-single-bar.mjs +5 -0
  80. package/{esm2015/single-bar/public_api.js → esm2020/single-bar/public_api.mjs} +0 -0
  81. package/esm2020/single-bar/single-bar.component.mjs +126 -0
  82. package/esm2020/single-bar/single-bar.module.mjs +19 -0
  83. package/esm2020/tag-cloud/delon-chart-tag-cloud.mjs +5 -0
  84. package/{esm2015/tag-cloud/public_api.js → esm2020/tag-cloud/public_api.mjs} +0 -0
  85. package/esm2020/tag-cloud/tag-cloud.component.mjs +161 -0
  86. package/esm2020/tag-cloud/tag-cloud.module.mjs +20 -0
  87. package/esm2020/timeline/delon-chart-timeline.mjs +5 -0
  88. package/{esm2015/timeline/public_api.js → esm2020/timeline/public_api.mjs} +0 -0
  89. package/esm2020/timeline/timeline.component.mjs +204 -0
  90. package/esm2020/timeline/timeline.module.mjs +21 -0
  91. package/esm2020/trend/delon-chart-trend.mjs +5 -0
  92. package/{esm2015/trend/public_api.js → esm2020/trend/public_api.mjs} +0 -0
  93. package/esm2020/trend/trend.component.mjs +52 -0
  94. package/esm2020/trend/trend.module.mjs +20 -0
  95. package/esm2020/water-wave/delon-chart-water-wave.mjs +5 -0
  96. package/{esm2015/water-wave/public_api.js → esm2020/water-wave/public_api.mjs} +0 -0
  97. package/esm2020/water-wave/water-wave.component.mjs +221 -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/{chart.js → chart.mjs} +1 -1
  104. package/fesm2015/chart.mjs.map +1 -0
  105. package/fesm2015/{delon-chart-chart-echarts.js → delon-chart-chart-echarts.mjs} +62 -53
  106. package/fesm2015/delon-chart-chart-echarts.mjs.map +1 -0
  107. package/fesm2015/{delon-chart-core.js → delon-chart-core.mjs} +23 -29
  108. package/fesm2015/delon-chart-core.mjs.map +1 -0
  109. package/fesm2015/delon-chart-custom.mjs +94 -0
  110. package/fesm2015/delon-chart-custom.mjs.map +1 -0
  111. package/fesm2015/{gauge.js → delon-chart-gauge.mjs} +46 -31
  112. package/fesm2015/delon-chart-gauge.mjs.map +1 -0
  113. package/fesm2015/delon-chart-mini-area.mjs +156 -0
  114. package/fesm2015/delon-chart-mini-area.mjs.map +1 -0
  115. package/fesm2015/delon-chart-mini-bar.mjs +123 -0
  116. package/fesm2015/delon-chart-mini-bar.mjs.map +1 -0
  117. package/fesm2015/delon-chart-mini-progress.mjs +71 -0
  118. package/fesm2015/delon-chart-mini-progress.mjs.map +1 -0
  119. package/fesm2015/delon-chart-number-info.mjs +70 -0
  120. package/fesm2015/delon-chart-number-info.mjs.map +1 -0
  121. package/fesm2015/delon-chart-pie.mjs +241 -0
  122. package/fesm2015/delon-chart-pie.mjs.map +1 -0
  123. package/fesm2015/{radar.js → delon-chart-radar.mjs} +43 -33
  124. package/fesm2015/delon-chart-radar.mjs.map +1 -0
  125. package/fesm2015/delon-chart-single-bar.mjs +147 -0
  126. package/fesm2015/delon-chart-single-bar.mjs.map +1 -0
  127. package/fesm2015/{tag-cloud.js → delon-chart-tag-cloud.mjs} +39 -26
  128. package/fesm2015/delon-chart-tag-cloud.mjs.map +1 -0
  129. package/fesm2015/{timeline.js → delon-chart-timeline.mjs} +64 -36
  130. package/fesm2015/delon-chart-timeline.mjs.map +1 -0
  131. package/fesm2015/delon-chart-trend.mjs +76 -0
  132. package/fesm2015/delon-chart-trend.mjs.map +1 -0
  133. package/fesm2015/{water-wave.js → delon-chart-water-wave.mjs} +38 -37
  134. package/fesm2015/delon-chart-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.mjs +7 -0
  140. package/fesm2020/chart.mjs.map +1 -0
  141. package/fesm2020/delon-chart-chart-echarts.mjs +242 -0
  142. package/fesm2020/delon-chart-chart-echarts.mjs.map +1 -0
  143. package/fesm2020/delon-chart-core.mjs +187 -0
  144. package/fesm2020/delon-chart-core.mjs.map +1 -0
  145. package/fesm2020/delon-chart-custom.mjs +94 -0
  146. package/fesm2020/delon-chart-custom.mjs.map +1 -0
  147. package/fesm2020/delon-chart-gauge.mjs +193 -0
  148. package/fesm2020/delon-chart-gauge.mjs.map +1 -0
  149. package/fesm2020/delon-chart-mini-area.mjs +156 -0
  150. package/fesm2020/delon-chart-mini-area.mjs.map +1 -0
  151. package/fesm2020/delon-chart-mini-bar.mjs +123 -0
  152. package/fesm2020/delon-chart-mini-bar.mjs.map +1 -0
  153. package/fesm2020/delon-chart-mini-progress.mjs +71 -0
  154. package/fesm2020/delon-chart-mini-progress.mjs.map +1 -0
  155. package/fesm2020/delon-chart-number-info.mjs +70 -0
  156. package/fesm2020/delon-chart-number-info.mjs.map +1 -0
  157. package/fesm2020/delon-chart-pie.mjs +241 -0
  158. package/fesm2020/delon-chart-pie.mjs.map +1 -0
  159. package/fesm2020/delon-chart-radar.mjs +174 -0
  160. package/fesm2020/delon-chart-radar.mjs.map +1 -0
  161. package/fesm2020/delon-chart-single-bar.mjs +149 -0
  162. package/fesm2020/delon-chart-single-bar.mjs.map +1 -0
  163. package/fesm2020/delon-chart-tag-cloud.mjs +185 -0
  164. package/fesm2020/delon-chart-tag-cloud.mjs.map +1 -0
  165. package/fesm2020/delon-chart-timeline.mjs +229 -0
  166. package/fesm2020/delon-chart-timeline.mjs.map +1 -0
  167. package/fesm2020/delon-chart-trend.mjs +76 -0
  168. package/fesm2020/delon-chart-trend.mjs.map +1 -0
  169. package/fesm2020/delon-chart-water-wave.mjs +245 -0
  170. package/fesm2020/delon-chart-water-wave.mjs.map +1 -0
  171. package/{mini-bar/mini-bar.d.ts → gauge/delon-chart-gauge.d.ts} +1 -0
  172. package/gauge/gauge.component.d.ts +8 -5
  173. package/gauge/gauge.module.d.ts +7 -0
  174. package/gauge/package.json +6 -7
  175. package/mini-area/delon-chart-mini-area.d.ts +5 -0
  176. package/mini-area/mini-area.component.d.ts +3 -0
  177. package/mini-area/mini-area.module.d.ts +6 -0
  178. package/mini-area/package.json +6 -7
  179. package/mini-bar/delon-chart-mini-bar.d.ts +5 -0
  180. package/mini-bar/mini-bar.component.d.ts +3 -0
  181. package/mini-bar/mini-bar.module.d.ts +6 -0
  182. package/mini-bar/package.json +6 -7
  183. package/mini-progress/delon-chart-mini-progress.d.ts +5 -0
  184. package/mini-progress/mini-progress.component.d.ts +6 -3
  185. package/mini-progress/mini-progress.module.d.ts +8 -0
  186. package/mini-progress/package.json +6 -7
  187. package/mini-progress/style/index.less +5 -0
  188. package/number-info/delon-chart-number-info.d.ts +5 -0
  189. package/number-info/number-info.component.d.ts +9 -6
  190. package/number-info/number-info.module.d.ts +8 -0
  191. package/number-info/package.json +6 -7
  192. package/number-info/style/index.less +12 -0
  193. package/package.json +160 -12
  194. package/{custom/g2Custom.d.ts → pie/delon-chart-pie.d.ts} +1 -0
  195. package/pie/package.json +6 -7
  196. package/pie/pie.component.d.ts +8 -5
  197. package/pie/pie.module.d.ts +9 -0
  198. package/pie/style/index.less +14 -0
  199. package/{gauge/gauge.d.ts → radar/delon-chart-radar.d.ts} +1 -0
  200. package/radar/package.json +6 -7
  201. package/radar/radar.component.d.ts +4 -1
  202. package/radar/radar.module.d.ts +9 -0
  203. package/radar/style/index.less +6 -0
  204. package/single-bar/delon-chart-single-bar.d.ts +5 -0
  205. package/single-bar/package.json +6 -7
  206. package/single-bar/single-bar.component.d.ts +4 -1
  207. package/single-bar/single-bar.module.d.ts +6 -0
  208. package/tag-cloud/delon-chart-tag-cloud.d.ts +5 -0
  209. package/tag-cloud/package.json +6 -7
  210. package/tag-cloud/tag-cloud.component.d.ts +3 -0
  211. package/tag-cloud/tag-cloud.module.d.ts +7 -0
  212. package/timeline/delon-chart-timeline.d.ts +5 -0
  213. package/timeline/package.json +6 -7
  214. package/timeline/timeline.component.d.ts +5 -2
  215. package/timeline/timeline.module.d.ts +8 -0
  216. package/{mini-area/mini-area.d.ts → trend/delon-chart-trend.d.ts} +1 -0
  217. package/trend/package.json +6 -7
  218. package/trend/style/index.less +6 -0
  219. package/trend/trend.component.d.ts +4 -1
  220. package/trend/trend.module.d.ts +7 -0
  221. package/water-wave/delon-chart-water-wave.d.ts +5 -0
  222. package/water-wave/package.json +6 -7
  223. package/water-wave/style/index.less +4 -0
  224. package/water-wave/water-wave.component.d.ts +5 -2
  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/echarts.component.js +0 -152
  273. package/esm2015/chart-echarts/echarts.module.js +0 -15
  274. package/esm2015/chart-echarts/echarts.service.js +0 -64
  275. package/esm2015/core/g2.base.component.js +0 -110
  276. package/esm2015/core/g2.servicce.js +0 -58
  277. package/esm2015/core/utils.js +0 -15
  278. package/esm2015/custom/custom.component.js +0 -58
  279. package/esm2015/custom/custom.module.js +0 -15
  280. package/esm2015/custom/g2Custom.js +0 -5
  281. package/esm2015/gauge/gauge.component.js +0 -158
  282. package/esm2015/gauge/gauge.module.js +0 -15
  283. package/esm2015/mini-area/mini-area.component.js +0 -117
  284. package/esm2015/mini-area/mini-area.js +0 -5
  285. package/esm2015/mini-area/mini-area.module.js +0 -14
  286. package/esm2015/mini-bar/mini-bar.component.js +0 -90
  287. package/esm2015/mini-bar/mini-bar.js +0 -5
  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.js +0 -5
  297. package/esm2015/radar/radar.module.js +0 -17
  298. package/esm2015/single-bar/single-bar.component.js +0 -111
  299. package/esm2015/single-bar/single-bar.js +0 -5
  300. package/esm2015/single-bar/single-bar.module.js +0 -14
  301. package/esm2015/tag-cloud/tag-cloud.component.js +0 -142
  302. package/esm2015/tag-cloud/tag-cloud.js +0 -5
  303. package/esm2015/tag-cloud/tag-cloud.module.js +0 -15
  304. package/esm2015/timeline/timeline.component.js +0 -178
  305. package/esm2015/timeline/timeline.js +0 -5
  306. package/esm2015/timeline/timeline.module.js +0 -16
  307. package/esm2015/trend/trend.component.js +0 -42
  308. package/esm2015/trend/trend.js +0 -5
  309. package/esm2015/trend/trend.module.js +0 -15
  310. package/esm2015/water-wave/water-wave.component.js +0 -224
  311. package/esm2015/water-wave/water-wave.js +0 -5
  312. package/esm2015/water-wave/water-wave.module.js +0 -15
  313. package/fesm2015/bar.js.map +0 -1
  314. package/fesm2015/card.js +0 -74
  315. package/fesm2015/card.js.map +0 -1
  316. package/fesm2015/chart.js.map +0 -1
  317. package/fesm2015/delon-chart-chart-echarts.js.map +0 -1
  318. package/fesm2015/delon-chart-core.js.map +0 -1
  319. package/fesm2015/g2Custom.js +0 -78
  320. package/fesm2015/g2Custom.js.map +0 -1
  321. package/fesm2015/gauge.js.map +0 -1
  322. package/fesm2015/mini-area.js +0 -136
  323. package/fesm2015/mini-area.js.map +0 -1
  324. package/fesm2015/mini-bar.js +0 -109
  325. package/fesm2015/mini-bar.js.map +0 -1
  326. package/fesm2015/mini-progress.js +0 -70
  327. package/fesm2015/mini-progress.js.map +0 -1
  328. package/fesm2015/number-info.js +0 -61
  329. package/fesm2015/number-info.js.map +0 -1
  330. package/fesm2015/pie.js +0 -219
  331. package/fesm2015/pie.js.map +0 -1
  332. package/fesm2015/radar.js.map +0 -1
  333. package/fesm2015/single-bar.js +0 -130
  334. package/fesm2015/single-bar.js.map +0 -1
  335. package/fesm2015/tag-cloud.js.map +0 -1
  336. package/fesm2015/timeline.js.map +0 -1
  337. package/fesm2015/trend.js +0 -62
  338. package/fesm2015/trend.js.map +0 -1
  339. package/fesm2015/water-wave.js.map +0 -1
  340. package/gauge/gauge.metadata.json +0 -1
  341. package/mini-area/mini-area.metadata.json +0 -1
  342. package/mini-bar/mini-bar.metadata.json +0 -1
  343. package/mini-progress/mini-progress.d.ts +0 -4
  344. package/mini-progress/mini-progress.metadata.json +0 -1
  345. package/number-info/number-info.d.ts +0 -4
  346. package/number-info/number-info.metadata.json +0 -1
  347. package/pie/pie.d.ts +0 -4
  348. package/pie/pie.metadata.json +0 -1
  349. package/radar/radar.d.ts +0 -4
  350. package/radar/radar.metadata.json +0 -1
  351. package/single-bar/single-bar.d.ts +0 -4
  352. package/single-bar/single-bar.metadata.json +0 -1
  353. package/tag-cloud/tag-cloud.d.ts +0 -4
  354. package/tag-cloud/tag-cloud.metadata.json +0 -1
  355. package/timeline/timeline.d.ts +0 -4
  356. package/timeline/timeline.metadata.json +0 -1
  357. package/trend/trend.d.ts +0 -4
  358. package/trend/trend.metadata.json +0 -1
  359. package/water-wave/water-wave.d.ts +0 -4
  360. package/water-wave/water-wave.metadata.json +0 -1
@@ -1,587 +0,0 @@
1
- /**
2
- * @license ng-alain(cipchk@qq.com) v12.4.2
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/cdk/platform'), require('@angular/core'), require('rxjs'), require('rxjs/operators'), require('@delon/util/decorator'), require('@angular/common'), require('ng-zorro-antd/core/outlet')) :
8
- typeof define === 'function' && define.amd ? define('@delon/chart/water-wave', ['exports', '@angular/cdk/platform', '@angular/core', 'rxjs', 'rxjs/operators', '@delon/util/decorator', '@angular/common', 'ng-zorro-antd/core/outlet'], factory) :
9
- (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory((global.delon = global.delon || {}, global.delon.chart = global.delon.chart || {}, global.delon.chart["water-wave"] = {}), global.ng.cdk.platform, global.ng.core, global.rxjs, global.rxjs.operators, global.decorator, global.ng.common, global["ng-zorro-antd/core/outlet"]));
10
- })(this, (function (exports, platform, core, rxjs, operators, decorator, common, outlet) { 'use strict';
11
-
12
- /*! *****************************************************************************
13
- Copyright (c) Microsoft Corporation.
14
-
15
- Permission to use, copy, modify, and/or distribute this software for any
16
- purpose with or without fee is hereby granted.
17
-
18
- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
19
- REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
20
- AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
21
- INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
22
- LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
23
- OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
24
- PERFORMANCE OF THIS SOFTWARE.
25
- ***************************************************************************** */
26
- /* global Reflect, Promise */
27
- var extendStatics = function (d, b) {
28
- extendStatics = Object.setPrototypeOf ||
29
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
30
- function (d, b) { for (var p in b)
31
- if (Object.prototype.hasOwnProperty.call(b, p))
32
- d[p] = b[p]; };
33
- return extendStatics(d, b);
34
- };
35
- function __extends(d, b) {
36
- if (typeof b !== "function" && b !== null)
37
- throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
38
- extendStatics(d, b);
39
- function __() { this.constructor = d; }
40
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
41
- }
42
- var __assign = function () {
43
- __assign = Object.assign || function __assign(t) {
44
- for (var s, i = 1, n = arguments.length; i < n; i++) {
45
- s = arguments[i];
46
- for (var p in s)
47
- if (Object.prototype.hasOwnProperty.call(s, p))
48
- t[p] = s[p];
49
- }
50
- return t;
51
- };
52
- return __assign.apply(this, arguments);
53
- };
54
- function __rest(s, e) {
55
- var t = {};
56
- for (var p in s)
57
- if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
58
- t[p] = s[p];
59
- if (s != null && typeof Object.getOwnPropertySymbols === "function")
60
- for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
61
- if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
62
- t[p[i]] = s[p[i]];
63
- }
64
- return t;
65
- }
66
- function __decorate(decorators, target, key, desc) {
67
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
68
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
69
- r = Reflect.decorate(decorators, target, key, desc);
70
- else
71
- for (var i = decorators.length - 1; i >= 0; i--)
72
- if (d = decorators[i])
73
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
74
- return c > 3 && r && Object.defineProperty(target, key, r), r;
75
- }
76
- function __param(paramIndex, decorator) {
77
- return function (target, key) { decorator(target, key, paramIndex); };
78
- }
79
- function __metadata(metadataKey, metadataValue) {
80
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
81
- return Reflect.metadata(metadataKey, metadataValue);
82
- }
83
- function __awaiter(thisArg, _arguments, P, generator) {
84
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
85
- return new (P || (P = Promise))(function (resolve, reject) {
86
- function fulfilled(value) { try {
87
- step(generator.next(value));
88
- }
89
- catch (e) {
90
- reject(e);
91
- } }
92
- function rejected(value) { try {
93
- step(generator["throw"](value));
94
- }
95
- catch (e) {
96
- reject(e);
97
- } }
98
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
99
- step((generator = generator.apply(thisArg, _arguments || [])).next());
100
- });
101
- }
102
- function __generator(thisArg, body) {
103
- var _ = { label: 0, sent: function () { if (t[0] & 1)
104
- throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
105
- return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function () { return this; }), g;
106
- function verb(n) { return function (v) { return step([n, v]); }; }
107
- function step(op) {
108
- if (f)
109
- throw new TypeError("Generator is already executing.");
110
- while (_)
111
- try {
112
- 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)
113
- return t;
114
- if (y = 0, t)
115
- op = [op[0] & 2, t.value];
116
- switch (op[0]) {
117
- case 0:
118
- case 1:
119
- t = op;
120
- break;
121
- case 4:
122
- _.label++;
123
- return { value: op[1], done: false };
124
- case 5:
125
- _.label++;
126
- y = op[1];
127
- op = [0];
128
- continue;
129
- case 7:
130
- op = _.ops.pop();
131
- _.trys.pop();
132
- continue;
133
- default:
134
- if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) {
135
- _ = 0;
136
- continue;
137
- }
138
- if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) {
139
- _.label = op[1];
140
- break;
141
- }
142
- if (op[0] === 6 && _.label < t[1]) {
143
- _.label = t[1];
144
- t = op;
145
- break;
146
- }
147
- if (t && _.label < t[2]) {
148
- _.label = t[2];
149
- _.ops.push(op);
150
- break;
151
- }
152
- if (t[2])
153
- _.ops.pop();
154
- _.trys.pop();
155
- continue;
156
- }
157
- op = body.call(thisArg, _);
158
- }
159
- catch (e) {
160
- op = [6, e];
161
- y = 0;
162
- }
163
- finally {
164
- f = t = 0;
165
- }
166
- if (op[0] & 5)
167
- throw op[1];
168
- return { value: op[0] ? op[1] : void 0, done: true };
169
- }
170
- }
171
- var __createBinding = Object.create ? (function (o, m, k, k2) {
172
- if (k2 === undefined)
173
- k2 = k;
174
- Object.defineProperty(o, k2, { enumerable: true, get: function () { return m[k]; } });
175
- }) : (function (o, m, k, k2) {
176
- if (k2 === undefined)
177
- k2 = k;
178
- o[k2] = m[k];
179
- });
180
- function __exportStar(m, o) {
181
- for (var p in m)
182
- if (p !== "default" && !Object.prototype.hasOwnProperty.call(o, p))
183
- __createBinding(o, m, p);
184
- }
185
- function __values(o) {
186
- var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
187
- if (m)
188
- return m.call(o);
189
- if (o && typeof o.length === "number")
190
- return {
191
- next: function () {
192
- if (o && i >= o.length)
193
- o = void 0;
194
- return { value: o && o[i++], done: !o };
195
- }
196
- };
197
- throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
198
- }
199
- function __read(o, n) {
200
- var m = typeof Symbol === "function" && o[Symbol.iterator];
201
- if (!m)
202
- return o;
203
- var i = m.call(o), r, ar = [], e;
204
- try {
205
- while ((n === void 0 || n-- > 0) && !(r = i.next()).done)
206
- ar.push(r.value);
207
- }
208
- catch (error) {
209
- e = { error: error };
210
- }
211
- finally {
212
- try {
213
- if (r && !r.done && (m = i["return"]))
214
- m.call(i);
215
- }
216
- finally {
217
- if (e)
218
- throw e.error;
219
- }
220
- }
221
- return ar;
222
- }
223
- /** @deprecated */
224
- function __spread() {
225
- for (var ar = [], i = 0; i < arguments.length; i++)
226
- ar = ar.concat(__read(arguments[i]));
227
- return ar;
228
- }
229
- /** @deprecated */
230
- function __spreadArrays() {
231
- for (var s = 0, i = 0, il = arguments.length; i < il; i++)
232
- s += arguments[i].length;
233
- for (var r = Array(s), k = 0, i = 0; i < il; i++)
234
- for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
235
- r[k] = a[j];
236
- return r;
237
- }
238
- function __spreadArray(to, from, pack) {
239
- if (pack || arguments.length === 2)
240
- for (var i = 0, l = from.length, ar; i < l; i++) {
241
- if (ar || !(i in from)) {
242
- if (!ar)
243
- ar = Array.prototype.slice.call(from, 0, i);
244
- ar[i] = from[i];
245
- }
246
- }
247
- return to.concat(ar || Array.prototype.slice.call(from));
248
- }
249
- function __await(v) {
250
- return this instanceof __await ? (this.v = v, this) : new __await(v);
251
- }
252
- function __asyncGenerator(thisArg, _arguments, generator) {
253
- if (!Symbol.asyncIterator)
254
- throw new TypeError("Symbol.asyncIterator is not defined.");
255
- var g = generator.apply(thisArg, _arguments || []), i, q = [];
256
- return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i;
257
- function verb(n) { if (g[n])
258
- i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }
259
- function resume(n, v) { try {
260
- step(g[n](v));
261
- }
262
- catch (e) {
263
- settle(q[0][3], e);
264
- } }
265
- function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }
266
- function fulfill(value) { resume("next", value); }
267
- function reject(value) { resume("throw", value); }
268
- function settle(f, v) { if (f(v), q.shift(), q.length)
269
- resume(q[0][0], q[0][1]); }
270
- }
271
- function __asyncDelegator(o) {
272
- var i, p;
273
- return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i;
274
- 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; }
275
- }
276
- function __asyncValues(o) {
277
- if (!Symbol.asyncIterator)
278
- throw new TypeError("Symbol.asyncIterator is not defined.");
279
- var m = o[Symbol.asyncIterator], i;
280
- 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);
281
- 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); }); }; }
282
- function settle(resolve, reject, d, v) { Promise.resolve(v).then(function (v) { resolve({ value: v, done: d }); }, reject); }
283
- }
284
- function __makeTemplateObject(cooked, raw) {
285
- if (Object.defineProperty) {
286
- Object.defineProperty(cooked, "raw", { value: raw });
287
- }
288
- else {
289
- cooked.raw = raw;
290
- }
291
- return cooked;
292
- }
293
- ;
294
- var __setModuleDefault = Object.create ? (function (o, v) {
295
- Object.defineProperty(o, "default", { enumerable: true, value: v });
296
- }) : function (o, v) {
297
- o["default"] = v;
298
- };
299
- function __importStar(mod) {
300
- if (mod && mod.__esModule)
301
- return mod;
302
- var result = {};
303
- if (mod != null)
304
- for (var k in mod)
305
- if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k))
306
- __createBinding(result, mod, k);
307
- __setModuleDefault(result, mod);
308
- return result;
309
- }
310
- function __importDefault(mod) {
311
- return (mod && mod.__esModule) ? mod : { default: mod };
312
- }
313
- function __classPrivateFieldGet(receiver, state, kind, f) {
314
- if (kind === "a" && !f)
315
- throw new TypeError("Private accessor was defined without a getter");
316
- if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver))
317
- throw new TypeError("Cannot read private member from an object whose class did not declare it");
318
- return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
319
- }
320
- function __classPrivateFieldSet(receiver, state, value, kind, f) {
321
- if (kind === "m")
322
- throw new TypeError("Private method is not writable");
323
- if (kind === "a" && !f)
324
- throw new TypeError("Private accessor was defined without a setter");
325
- if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver))
326
- throw new TypeError("Cannot write private member to an object whose class did not declare it");
327
- return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
328
- }
329
-
330
- var G2WaterWaveComponent = /** @class */ (function () {
331
- // #endregion
332
- function G2WaterWaveComponent(el, renderer, ngZone, cdr, platform) {
333
- this.el = el;
334
- this.renderer = renderer;
335
- this.ngZone = ngZone;
336
- this.cdr = cdr;
337
- this.platform = platform;
338
- this.resize$ = null;
339
- // #region fields
340
- this.animate = true;
341
- this.delay = 0;
342
- this.color = '#1890FF';
343
- this.height = 160;
344
- }
345
- G2WaterWaveComponent.prototype.renderChart = function (isUpdate) {
346
- if (!this.resize$)
347
- return;
348
- this.updateRadio();
349
- var _a = this, percent = _a.percent, color = _a.color, node = _a.node, animate = _a.animate;
350
- var data = Math.min(Math.max(percent / 100, 0), 100);
351
- // eslint-disable-next-line @typescript-eslint/no-this-alias
352
- var self = this;
353
- cancelAnimationFrame(this.timer);
354
- var canvas = node.nativeElement;
355
- var ctx = canvas.getContext('2d');
356
- var canvasWidth = canvas.width;
357
- var canvasHeight = canvas.height;
358
- var radius = canvasWidth / 2;
359
- var lineWidth = 2;
360
- var cR = radius - lineWidth;
361
- ctx.beginPath();
362
- ctx.lineWidth = lineWidth * 2;
363
- var axisLength = canvasWidth - lineWidth;
364
- var unit = axisLength / 8;
365
- var xOffset = lineWidth;
366
- var sp = 0; // 周期偏移量
367
- var range = 0.2; // 振幅
368
- var currRange = range;
369
- var currData = 0;
370
- var waveupsp = animate ? 0.005 : 0.015; // 水波上涨速度
371
- var arcStack = [];
372
- var bR = radius - lineWidth;
373
- var circleOffset = -(Math.PI / 2);
374
- var circleLock = true;
375
- for (var i = circleOffset; i < circleOffset + 2 * Math.PI; i += 1 / (8 * Math.PI)) {
376
- arcStack.push([radius + bR * Math.cos(i), radius + bR * Math.sin(i)]);
377
- }
378
- var cStartPoint = arcStack.shift();
379
- ctx.strokeStyle = color;
380
- ctx.moveTo(cStartPoint[0], cStartPoint[1]);
381
- function drawSin() {
382
- ctx.beginPath();
383
- ctx.save();
384
- var sinStack = [];
385
- for (var i = xOffset; i <= xOffset + axisLength; i += 20 / axisLength) {
386
- var x = sp + (xOffset + i) / unit;
387
- var y = Math.sin(x) * currRange;
388
- var dx = i;
389
- var dy = 2 * cR * (1 - currData) + (radius - cR) - unit * y;
390
- ctx.lineTo(dx, dy);
391
- sinStack.push([dx, dy]);
392
- }
393
- var startPoint = sinStack.shift();
394
- ctx.lineTo(xOffset + axisLength, canvasHeight);
395
- ctx.lineTo(xOffset, canvasHeight);
396
- ctx.lineTo(startPoint[0], startPoint[1]);
397
- var gradient = ctx.createLinearGradient(0, 0, 0, canvasHeight);
398
- gradient.addColorStop(0, '#ffffff');
399
- gradient.addColorStop(1, color);
400
- ctx.fillStyle = gradient;
401
- ctx.fill();
402
- ctx.restore();
403
- }
404
- function render() {
405
- var e_1, _a;
406
- ctx.clearRect(0, 0, canvasWidth, canvasHeight);
407
- if (circleLock && !isUpdate) {
408
- if (arcStack.length) {
409
- if (animate) {
410
- var temp = arcStack.shift();
411
- ctx.lineTo(temp[0], temp[1]);
412
- ctx.stroke();
413
- }
414
- else {
415
- try {
416
- for (var arcStack_1 = __values(arcStack), arcStack_1_1 = arcStack_1.next(); !arcStack_1_1.done; arcStack_1_1 = arcStack_1.next()) {
417
- var temp = arcStack_1_1.value;
418
- ctx.lineTo(temp[0], temp[1]);
419
- ctx.stroke();
420
- }
421
- }
422
- catch (e_1_1) { e_1 = { error: e_1_1 }; }
423
- finally {
424
- try {
425
- if (arcStack_1_1 && !arcStack_1_1.done && (_a = arcStack_1.return)) _a.call(arcStack_1);
426
- }
427
- finally { if (e_1) throw e_1.error; }
428
- }
429
- arcStack = [];
430
- }
431
- }
432
- else {
433
- circleLock = false;
434
- ctx.lineTo(cStartPoint[0], cStartPoint[1]);
435
- ctx.stroke();
436
- arcStack = null;
437
- ctx.globalCompositeOperation = 'destination-over';
438
- ctx.beginPath();
439
- ctx.lineWidth = lineWidth;
440
- ctx.arc(radius, radius, bR, 0, 2 * Math.PI, true);
441
- ctx.beginPath();
442
- ctx.save();
443
- ctx.arc(radius, radius, radius - 3 * lineWidth, 0, 2 * Math.PI, true);
444
- ctx.restore();
445
- ctx.clip();
446
- ctx.fillStyle = color;
447
- }
448
- }
449
- else {
450
- if (data >= 0.85) {
451
- if (currRange > range / 4) {
452
- var t = range * 0.01;
453
- currRange -= t;
454
- }
455
- }
456
- else if (data <= 0.1) {
457
- if (currRange < range * 1.5) {
458
- var t = range * 0.01;
459
- currRange += t;
460
- }
461
- }
462
- else {
463
- if (currRange <= range) {
464
- var t = range * 0.01;
465
- currRange += t;
466
- }
467
- if (currRange >= range) {
468
- var t = range * 0.01;
469
- currRange -= t;
470
- }
471
- }
472
- if (data - currData > 0) {
473
- currData += waveupsp;
474
- }
475
- if (data - currData < 0) {
476
- currData -= waveupsp;
477
- }
478
- sp += 0.07;
479
- drawSin();
480
- }
481
- self.timer = requestAnimationFrame(render);
482
- }
483
- render();
484
- // drawSin();
485
- };
486
- G2WaterWaveComponent.prototype.updateRadio = function () {
487
- var offsetWidth = this.el.nativeElement.parentNode.offsetWidth;
488
- var radio = offsetWidth < this.height ? offsetWidth / this.height : 1;
489
- this.renderer.setStyle(this.el.nativeElement, 'transform', "scale(" + radio + ")");
490
- };
491
- G2WaterWaveComponent.prototype.render = function () {
492
- this.renderChart(false);
493
- };
494
- G2WaterWaveComponent.prototype.installResizeEvent = function () {
495
- var _this = this;
496
- this.resize$ = rxjs.fromEvent(window, 'resize')
497
- .pipe(operators.debounceTime(200))
498
- .subscribe(function () { return _this.updateRadio(); });
499
- };
500
- G2WaterWaveComponent.prototype.ngOnInit = function () {
501
- var _this = this;
502
- if (!this.platform.isBrowser) {
503
- return;
504
- }
505
- this.installResizeEvent();
506
- this.ngZone.runOutsideAngular(function () { return setTimeout(function () { return _this.render(); }, _this.delay); });
507
- };
508
- G2WaterWaveComponent.prototype.ngOnChanges = function () {
509
- var _this = this;
510
- this.ngZone.runOutsideAngular(function () { return _this.renderChart(true); });
511
- this.cdr.detectChanges();
512
- };
513
- G2WaterWaveComponent.prototype.ngOnDestroy = function () {
514
- if (this.timer) {
515
- cancelAnimationFrame(this.timer);
516
- }
517
- if (this.resize$) {
518
- this.resize$.unsubscribe();
519
- }
520
- };
521
- return G2WaterWaveComponent;
522
- }());
523
- G2WaterWaveComponent.decorators = [
524
- { type: core.Component, args: [{
525
- selector: 'g2-water-wave',
526
- exportAs: 'g2WaterWave',
527
- template: "<div [ngStyle]=\"{ 'height.px': height, 'width.px': height, overflow: 'hidden' }\">\n <canvas #container class=\"g2-water-wave__canvas\" width=\"{{ height * 2 }}\" height=\"{{ height * 2 }}\"></canvas>\n</div>\n<div class=\"g2-water-wave__desc\" [ngStyle]=\"{ 'width.px': height }\">\n <span *ngIf=\"title\" class=\"g2-water-wave__desc-title\">\n <ng-container *nzStringTemplateOutlet=\"title\">{{ title }}</ng-container>\n </span>\n <h4 class=\"g2-water-wave__desc-percent\">{{ percent }}%</h4>\n</div>\n",
528
- host: { '[class.g2-water-wave]': 'true' },
529
- preserveWhitespaces: false,
530
- changeDetection: core.ChangeDetectionStrategy.OnPush,
531
- encapsulation: core.ViewEncapsulation.None
532
- },] }
533
- ];
534
- G2WaterWaveComponent.ctorParameters = function () { return [
535
- { type: core.ElementRef },
536
- { type: core.Renderer2 },
537
- { type: core.NgZone },
538
- { type: core.ChangeDetectorRef },
539
- { type: platform.Platform }
540
- ]; };
541
- G2WaterWaveComponent.propDecorators = {
542
- node: [{ type: core.ViewChild, args: ['container', { static: true },] }],
543
- animate: [{ type: core.Input }],
544
- delay: [{ type: core.Input }],
545
- title: [{ type: core.Input }],
546
- color: [{ type: core.Input }],
547
- height: [{ type: core.Input }],
548
- percent: [{ type: core.Input }]
549
- };
550
- __decorate([
551
- decorator.InputBoolean()
552
- ], G2WaterWaveComponent.prototype, "animate", void 0);
553
- __decorate([
554
- decorator.InputNumber()
555
- ], G2WaterWaveComponent.prototype, "delay", void 0);
556
- __decorate([
557
- decorator.InputNumber()
558
- ], G2WaterWaveComponent.prototype, "height", void 0);
559
- __decorate([
560
- decorator.InputNumber()
561
- ], G2WaterWaveComponent.prototype, "percent", void 0);
562
-
563
- var COMPONENTS = [G2WaterWaveComponent];
564
- var G2WaterWaveModule = /** @class */ (function () {
565
- function G2WaterWaveModule() {
566
- }
567
- return G2WaterWaveModule;
568
- }());
569
- G2WaterWaveModule.decorators = [
570
- { type: core.NgModule, args: [{
571
- imports: [common.CommonModule, outlet.NzOutletModule],
572
- declarations: COMPONENTS,
573
- exports: COMPONENTS
574
- },] }
575
- ];
576
-
577
- /**
578
- * Generated bundle index. Do not edit.
579
- */
580
-
581
- exports.G2WaterWaveComponent = G2WaterWaveComponent;
582
- exports.G2WaterWaveModule = G2WaterWaveModule;
583
-
584
- Object.defineProperty(exports, '__esModule', { value: true });
585
-
586
- }));
587
- //# sourceMappingURL=water-wave.umd.js.map