@covalent/echarts 6.4.0 → 6.4.2

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 (212) hide show
  1. package/bar/bar.component.d.ts +1 -1
  2. package/base/axis/axis.component.d.ts +1 -1
  3. package/base/axis/x-axis.component.d.ts +1 -1
  4. package/base/axis/y-axis.component.d.ts +1 -1
  5. package/base/chart.component.d.ts +1 -1
  6. package/base/dataset/dataset.component.d.ts +1 -1
  7. package/base/series/series.component.d.ts +1 -1
  8. package/base/src/axis/README.md +58 -0
  9. package/base/src/dataset/README.md +80 -0
  10. package/clustering/clustering.component.d.ts +1 -1
  11. package/esm2020/bar/bar.component.mjs +135 -0
  12. package/{esm2022 → esm2020}/bar/bar.module.mjs +5 -5
  13. package/esm2020/base/axis/axis.component.mjs +127 -0
  14. package/esm2020/base/axis/x-axis.component.mjs +55 -0
  15. package/esm2020/base/axis/y-axis.component.mjs +55 -0
  16. package/{esm2022 → esm2020}/base/base.module.mjs +11 -11
  17. package/esm2020/base/chart-options.service.mjs +65 -0
  18. package/esm2020/base/chart.component.mjs +195 -0
  19. package/esm2020/base/dataset/dataset.component.mjs +52 -0
  20. package/esm2020/base/series/series.component.mjs +91 -0
  21. package/esm2020/clustering/clustering.component.mjs +233 -0
  22. package/{esm2022 → esm2020}/clustering/clustering.module.mjs +5 -5
  23. package/esm2020/graph/graph.component.mjs +185 -0
  24. package/{esm2022 → esm2020}/graph/graph.module.mjs +5 -5
  25. package/esm2020/histogram/histogram.component.mjs +125 -0
  26. package/{esm2022 → esm2020}/histogram/histogram.module.mjs +5 -5
  27. package/esm2020/line/line.component.mjs +159 -0
  28. package/{esm2022 → esm2020}/line/line.module.mjs +5 -5
  29. package/esm2020/map/map.component.mjs +132 -0
  30. package/{esm2022 → esm2020}/map/map.module.mjs +5 -5
  31. package/esm2020/pie/pie.component.mjs +127 -0
  32. package/{esm2022 → esm2020}/pie/pie.module.mjs +5 -5
  33. package/esm2020/regression/regression.component.mjs +137 -0
  34. package/{esm2022 → esm2020}/regression/regression.module.mjs +5 -5
  35. package/esm2020/sankey/sankey.component.mjs +117 -0
  36. package/{esm2022 → esm2020}/sankey/sankey.module.mjs +5 -5
  37. package/esm2020/scatter/scatter.component.mjs +144 -0
  38. package/{esm2022 → esm2020}/scatter/scatter.module.mjs +5 -5
  39. package/esm2020/toolbox/toolbox.component.mjs +135 -0
  40. package/{esm2022 → esm2020}/toolbox/toolbox.module.mjs +7 -7
  41. package/esm2020/tooltip/series-tooltip.component.mjs +102 -0
  42. package/esm2020/tooltip/tooltip.component.mjs +156 -0
  43. package/{esm2022 → esm2020}/tooltip/tooltip.module.mjs +9 -9
  44. package/esm2020/tree/tree.component.mjs +117 -0
  45. package/{esm2022 → esm2020}/tree/tree.module.mjs +5 -5
  46. package/esm2020/treemap/treemap.component.mjs +149 -0
  47. package/{esm2022 → esm2020}/treemap/treemap.module.mjs +5 -5
  48. package/esm2020/wordcloud/wordcloud.component.mjs +92 -0
  49. package/{esm2022 → esm2020}/wordcloud/wordcloud.module.mjs +5 -5
  50. package/{fesm2022 → fesm2015}/covalent-echarts-bar.mjs +12 -40
  51. package/fesm2015/covalent-echarts-bar.mjs.map +1 -0
  52. package/fesm2015/covalent-echarts-base.mjs +4931 -0
  53. package/{fesm2022 → fesm2015}/covalent-echarts-base.mjs.map +1 -1
  54. package/{fesm2022 → fesm2015}/covalent-echarts-clustering.mjs +12 -54
  55. package/fesm2015/covalent-echarts-clustering.mjs.map +1 -0
  56. package/{fesm2022 → fesm2015}/covalent-echarts-graph.mjs +12 -57
  57. package/{fesm2022 → fesm2015}/covalent-echarts-graph.mjs.map +1 -1
  58. package/fesm2015/covalent-echarts-histogram.mjs +151 -0
  59. package/fesm2015/covalent-echarts-histogram.mjs.map +1 -0
  60. package/{fesm2022 → fesm2015}/covalent-echarts-line.mjs +12 -48
  61. package/fesm2015/covalent-echarts-line.mjs.map +1 -0
  62. package/{fesm2022 → fesm2015}/covalent-echarts-map.mjs +12 -39
  63. package/fesm2015/covalent-echarts-map.mjs.map +1 -0
  64. package/{fesm2022 → fesm2015}/covalent-echarts-pie.mjs +12 -38
  65. package/fesm2015/covalent-echarts-pie.mjs.map +1 -0
  66. package/fesm2015/covalent-echarts-regression.mjs +163 -0
  67. package/fesm2015/covalent-echarts-regression.mjs.map +1 -0
  68. package/{fesm2022 → fesm2015}/covalent-echarts-sankey.mjs +12 -34
  69. package/fesm2015/covalent-echarts-sankey.mjs.map +1 -0
  70. package/{fesm2022 → fesm2015}/covalent-echarts-scatter.mjs +12 -43
  71. package/fesm2015/covalent-echarts-scatter.mjs.map +1 -0
  72. package/fesm2015/covalent-echarts-toolbox.mjs +158 -0
  73. package/fesm2015/covalent-echarts-toolbox.mjs.map +1 -0
  74. package/{fesm2022 → fesm2015}/covalent-echarts-tooltip.mjs +47 -69
  75. package/{fesm2022 → fesm2015}/covalent-echarts-tooltip.mjs.map +1 -1
  76. package/{fesm2022 → fesm2015}/covalent-echarts-tree.mjs +12 -34
  77. package/{fesm2022 → fesm2015}/covalent-echarts-tree.mjs.map +1 -1
  78. package/{fesm2022 → fesm2015}/covalent-echarts-treemap.mjs +13 -46
  79. package/fesm2015/covalent-echarts-treemap.mjs.map +1 -0
  80. package/{fesm2022 → fesm2015}/covalent-echarts-wordcloud.mjs +12 -26
  81. package/fesm2015/covalent-echarts-wordcloud.mjs.map +1 -0
  82. package/fesm2020/covalent-echarts-bar.mjs +158 -0
  83. package/fesm2020/covalent-echarts-bar.mjs.map +1 -0
  84. package/{fesm2022 → fesm2020}/covalent-echarts-base.mjs +69 -135
  85. package/fesm2020/covalent-echarts-base.mjs.map +1 -0
  86. package/fesm2020/covalent-echarts-clustering.mjs +258 -0
  87. package/{fesm2022 → fesm2020}/covalent-echarts-clustering.mjs.map +1 -1
  88. package/fesm2020/covalent-echarts-graph.mjs +210 -0
  89. package/fesm2020/covalent-echarts-graph.mjs.map +1 -0
  90. package/{fesm2022 → fesm2020}/covalent-echarts-histogram.mjs +12 -14
  91. package/{fesm2022 → fesm2020}/covalent-echarts-histogram.mjs.map +1 -1
  92. package/fesm2020/covalent-echarts-line.mjs +182 -0
  93. package/fesm2020/covalent-echarts-line.mjs.map +1 -0
  94. package/fesm2020/covalent-echarts-map.mjs +155 -0
  95. package/{fesm2022 → fesm2020}/covalent-echarts-map.mjs.map +1 -1
  96. package/fesm2020/covalent-echarts-pie.mjs +150 -0
  97. package/fesm2020/covalent-echarts-pie.mjs.map +1 -0
  98. package/{fesm2022 → fesm2020}/covalent-echarts-regression.mjs +12 -15
  99. package/fesm2020/covalent-echarts-regression.mjs.map +1 -0
  100. package/fesm2020/covalent-echarts-sankey.mjs +142 -0
  101. package/fesm2020/covalent-echarts-sankey.mjs.map +1 -0
  102. package/fesm2020/covalent-echarts-scatter.mjs +169 -0
  103. package/fesm2020/covalent-echarts-scatter.mjs.map +1 -0
  104. package/{fesm2022 → fesm2020}/covalent-echarts-toolbox.mjs +23 -37
  105. package/{fesm2022 → fesm2020}/covalent-echarts-toolbox.mjs.map +1 -1
  106. package/fesm2020/covalent-echarts-tooltip.mjs +283 -0
  107. package/fesm2020/covalent-echarts-tooltip.mjs.map +1 -0
  108. package/fesm2020/covalent-echarts-tree.mjs +140 -0
  109. package/fesm2020/covalent-echarts-tree.mjs.map +1 -0
  110. package/fesm2020/covalent-echarts-treemap.mjs +174 -0
  111. package/fesm2020/covalent-echarts-treemap.mjs.map +1 -0
  112. package/fesm2020/covalent-echarts-wordcloud.mjs +117 -0
  113. package/fesm2020/covalent-echarts-wordcloud.mjs.map +1 -0
  114. package/fesm2020/covalent-echarts.mjs +4 -0
  115. package/fesm2020/covalent-echarts.mjs.map +1 -0
  116. package/graph/graph.component.d.ts +1 -1
  117. package/histogram/histogram.component.d.ts +1 -1
  118. package/line/line.component.d.ts +1 -1
  119. package/map/map.component.d.ts +1 -1
  120. package/package.json +99 -57
  121. package/pie/pie.component.d.ts +1 -1
  122. package/regression/regression.component.d.ts +1 -1
  123. package/sankey/sankey.component.d.ts +1 -1
  124. package/scatter/scatter.component.d.ts +1 -1
  125. package/toolbox/toolbox.component.d.ts +1 -1
  126. package/tooltip/series-tooltip.component.d.ts +1 -1
  127. package/tooltip/tooltip.component.d.ts +1 -1
  128. package/tree/tree.component.d.ts +1 -1
  129. package/treemap/treemap.component.d.ts +2 -2
  130. package/wordcloud/wordcloud.component.d.ts +1 -1
  131. package/esm2022/bar/bar.component.mjs +0 -163
  132. package/esm2022/base/axis/axis.component.mjs +0 -157
  133. package/esm2022/base/axis/x-axis.component.mjs +0 -56
  134. package/esm2022/base/axis/y-axis.component.mjs +0 -56
  135. package/esm2022/base/chart-options.service.mjs +0 -63
  136. package/esm2022/base/chart.component.mjs +0 -211
  137. package/esm2022/base/dataset/dataset.component.mjs +0 -57
  138. package/esm2022/base/series/series.component.mjs +0 -106
  139. package/esm2022/clustering/clustering.component.mjs +0 -275
  140. package/esm2022/graph/graph.component.mjs +0 -230
  141. package/esm2022/histogram/histogram.component.mjs +0 -127
  142. package/esm2022/line/line.component.mjs +0 -195
  143. package/esm2022/map/map.component.mjs +0 -159
  144. package/esm2022/pie/pie.component.mjs +0 -153
  145. package/esm2022/regression/regression.component.mjs +0 -140
  146. package/esm2022/sankey/sankey.component.mjs +0 -139
  147. package/esm2022/scatter/scatter.component.mjs +0 -175
  148. package/esm2022/toolbox/toolbox.component.mjs +0 -149
  149. package/esm2022/tooltip/series-tooltip.component.mjs +0 -112
  150. package/esm2022/tooltip/tooltip.component.mjs +0 -168
  151. package/esm2022/tree/tree.component.mjs +0 -139
  152. package/esm2022/treemap/treemap.component.mjs +0 -182
  153. package/esm2022/wordcloud/wordcloud.component.mjs +0 -106
  154. package/fesm2022/covalent-echarts-bar.mjs.map +0 -1
  155. package/fesm2022/covalent-echarts-line.mjs.map +0 -1
  156. package/fesm2022/covalent-echarts-pie.mjs.map +0 -1
  157. package/fesm2022/covalent-echarts-regression.mjs.map +0 -1
  158. package/fesm2022/covalent-echarts-sankey.mjs.map +0 -1
  159. package/fesm2022/covalent-echarts-scatter.mjs.map +0 -1
  160. package/fesm2022/covalent-echarts-treemap.mjs.map +0 -1
  161. package/fesm2022/covalent-echarts-wordcloud.mjs.map +0 -1
  162. /package/{esm2022 → esm2020}/bar/covalent-echarts-bar.mjs +0 -0
  163. /package/{esm2022 → esm2020}/bar/public_api.mjs +0 -0
  164. /package/{esm2022 → esm2020}/base/axis/axis.interface.mjs +0 -0
  165. /package/{esm2022 → esm2020}/base/base.types.mjs +0 -0
  166. /package/{esm2022 → esm2020}/base/covalent-echarts-base.mjs +0 -0
  167. /package/{esm2022 → esm2020}/base/public_api.mjs +0 -0
  168. /package/{esm2022 → esm2020}/base/series/series.interface.mjs +0 -0
  169. /package/{esm2022 → esm2020}/base/themes/aqua-splash.mjs +0 -0
  170. /package/{esm2022 → esm2020}/base/themes/california-coast.mjs +0 -0
  171. /package/{esm2022 → esm2020}/base/themes/hawaiian-sunrise.mjs +0 -0
  172. /package/{esm2022 → esm2020}/base/themes/passion-flower.mjs +0 -0
  173. /package/{esm2022 → esm2020}/base/themes/razzleberry-pie.mjs +0 -0
  174. /package/{esm2022 → esm2020}/base/themes/teradata-classic.mjs +0 -0
  175. /package/{esm2022 → esm2020}/base/themes/teradata-default.mjs +0 -0
  176. /package/{esm2022 → esm2020}/base/themes/urban-sunrise.mjs +0 -0
  177. /package/{esm2022 → esm2020}/base/themes/volcanic-eruption.mjs +0 -0
  178. /package/{esm2022 → esm2020}/base/utils/assign-defined.mjs +0 -0
  179. /package/{esm2022 → esm2020}/base/utils/echarts.mjs +0 -0
  180. /package/{esm2022 → esm2020}/base/utils/index.mjs +0 -0
  181. /package/{esm2022 → esm2020}/clustering/covalent-echarts-clustering.mjs +0 -0
  182. /package/{esm2022 → esm2020}/clustering/public_api.mjs +0 -0
  183. /package/{esm2022 → esm2020}/covalent-echarts.mjs +0 -0
  184. /package/{esm2022 → esm2020}/graph/covalent-echarts-graph.mjs +0 -0
  185. /package/{esm2022 → esm2020}/graph/public_api.mjs +0 -0
  186. /package/{esm2022 → esm2020}/histogram/covalent-echarts-histogram.mjs +0 -0
  187. /package/{esm2022 → esm2020}/histogram/public_api.mjs +0 -0
  188. /package/{esm2022 → esm2020}/line/covalent-echarts-line.mjs +0 -0
  189. /package/{esm2022 → esm2020}/line/public_api.mjs +0 -0
  190. /package/{esm2022 → esm2020}/map/covalent-echarts-map.mjs +0 -0
  191. /package/{esm2022 → esm2020}/map/public_api.mjs +0 -0
  192. /package/{esm2022 → esm2020}/pie/covalent-echarts-pie.mjs +0 -0
  193. /package/{esm2022 → esm2020}/pie/public_api.mjs +0 -0
  194. /package/{esm2022 → esm2020}/public_api.mjs +0 -0
  195. /package/{esm2022 → esm2020}/regression/covalent-echarts-regression.mjs +0 -0
  196. /package/{esm2022 → esm2020}/regression/public_api.mjs +0 -0
  197. /package/{esm2022 → esm2020}/sankey/covalent-echarts-sankey.mjs +0 -0
  198. /package/{esm2022 → esm2020}/sankey/public_api.mjs +0 -0
  199. /package/{esm2022 → esm2020}/scatter/covalent-echarts-scatter.mjs +0 -0
  200. /package/{esm2022 → esm2020}/scatter/public_api.mjs +0 -0
  201. /package/{esm2022 → esm2020}/toolbox/covalent-echarts-toolbox.mjs +0 -0
  202. /package/{esm2022 → esm2020}/toolbox/public_api.mjs +0 -0
  203. /package/{esm2022 → esm2020}/tooltip/covalent-echarts-tooltip.mjs +0 -0
  204. /package/{esm2022 → esm2020}/tooltip/public_api.mjs +0 -0
  205. /package/{esm2022 → esm2020}/tree/covalent-echarts-tree.mjs +0 -0
  206. /package/{esm2022 → esm2020}/tree/public_api.mjs +0 -0
  207. /package/{esm2022 → esm2020}/treemap/covalent-echarts-treemap.mjs +0 -0
  208. /package/{esm2022 → esm2020}/treemap/public_api.mjs +0 -0
  209. /package/{esm2022 → esm2020}/wordcloud/covalent-echarts-wordcloud.mjs +0 -0
  210. /package/{esm2022 → esm2020}/wordcloud/public_api.mjs +0 -0
  211. /package/{fesm2022 → fesm2015}/covalent-echarts.mjs +0 -0
  212. /package/{fesm2022 → fesm2015}/covalent-echarts.mjs.map +0 -0
@@ -0,0 +1,92 @@
1
+ import { Component, Input, ChangeDetectionStrategy, forwardRef, } from '@angular/core';
2
+ import { TdChartOptionsService, TdSeriesDirective, } from '@covalent/echarts/base';
3
+ import * as i0 from "@angular/core";
4
+ import * as i1 from "@covalent/echarts/base";
5
+ export class TdChartSeriesWordcloudComponent extends TdSeriesDirective {
6
+ constructor(_optionsService) {
7
+ super('wordCloud', _optionsService);
8
+ }
9
+ getConfig() {
10
+ return {
11
+ shape: this.shape,
12
+ left: this.left,
13
+ top: this.top,
14
+ width: this.width,
15
+ height: this.height,
16
+ right: this.right,
17
+ bottom: this.bottom,
18
+ sizeRange: this.sizeRange,
19
+ rotationRange: this.rotationRange,
20
+ rotationStep: this.rotationStep,
21
+ gridSize: this.gridSize,
22
+ drawOutOfBound: this.drawOutOfBound,
23
+ textStyle: this.textStyle,
24
+ };
25
+ }
26
+ }
27
+ TdChartSeriesWordcloudComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TdChartSeriesWordcloudComponent, deps: [{ token: i1.TdChartOptionsService }], target: i0.ɵɵFactoryTarget.Component });
28
+ TdChartSeriesWordcloudComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: TdChartSeriesWordcloudComponent, selector: "td-chart-series[td-wordCloud]", inputs: { config: "config", id: "id", name: "name", color: "color", data: "data", animation: "animation", animationThreshold: "animationThreshold", animationDuration: "animationDuration", animationEasing: "animationEasing", animationDelay: "animationDelay", animationDurationUpdate: "animationDurationUpdate", animationEasingUpdate: "animationEasingUpdate", animationDelayUpdate: "animationDelayUpdate", tooltip: "tooltip", shape: "shape", left: "left", top: "top", width: "width", height: "height", right: "right", bottom: "bottom", sizeRange: "sizeRange", rotationRange: "rotationRange", rotationStep: "rotationStep", gridSize: "gridSize", drawOutOfBound: "drawOutOfBound", textStyle: "textStyle" }, providers: [
29
+ {
30
+ provide: TdSeriesDirective,
31
+ useExisting: forwardRef(() => TdChartSeriesWordcloudComponent),
32
+ },
33
+ ], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
34
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TdChartSeriesWordcloudComponent, decorators: [{
35
+ type: Component,
36
+ args: [{
37
+ selector: 'td-chart-series[td-wordCloud]',
38
+ template: '',
39
+ changeDetection: ChangeDetectionStrategy.OnPush,
40
+ inputs: [
41
+ 'config',
42
+ 'id',
43
+ 'name',
44
+ 'color',
45
+ 'data',
46
+ 'animation',
47
+ 'animationThreshold',
48
+ 'animationDuration',
49
+ 'animationEasing',
50
+ 'animationDelay',
51
+ 'animationDurationUpdate',
52
+ 'animationEasingUpdate',
53
+ 'animationDelayUpdate',
54
+ 'tooltip',
55
+ ],
56
+ providers: [
57
+ {
58
+ provide: TdSeriesDirective,
59
+ useExisting: forwardRef(() => TdChartSeriesWordcloudComponent),
60
+ },
61
+ ],
62
+ }]
63
+ }], ctorParameters: function () { return [{ type: i1.TdChartOptionsService }]; }, propDecorators: { data: [{
64
+ type: Input
65
+ }], shape: [{
66
+ type: Input
67
+ }], left: [{
68
+ type: Input
69
+ }], top: [{
70
+ type: Input
71
+ }], width: [{
72
+ type: Input
73
+ }], height: [{
74
+ type: Input
75
+ }], right: [{
76
+ type: Input
77
+ }], bottom: [{
78
+ type: Input
79
+ }], sizeRange: [{
80
+ type: Input
81
+ }], rotationRange: [{
82
+ type: Input
83
+ }], rotationStep: [{
84
+ type: Input
85
+ }], gridSize: [{
86
+ type: Input
87
+ }], drawOutOfBound: [{
88
+ type: Input
89
+ }], textStyle: [{
90
+ type: Input
91
+ }] } });
92
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid29yZGNsb3VkLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL2xpYnMvYW5ndWxhci1lY2hhcnRzL3dvcmRjbG91ZC9zcmMvd29yZGNsb3VkLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQ0wsU0FBUyxFQUNULEtBQUssRUFDTCx1QkFBdUIsRUFDdkIsVUFBVSxHQUNYLE1BQU0sZUFBZSxDQUFDO0FBRXZCLE9BQU8sRUFDTCxxQkFBcUIsRUFFckIsaUJBQWlCLEdBQ2xCLE1BQU0sd0JBQXdCLENBQUM7OztBQTBFaEMsTUFBTSxPQUFPLCtCQUNYLFNBQVEsaUJBQWlCO0lBa0J6QixZQUFZLGVBQXNDO1FBQ2hELEtBQUssQ0FBQyxXQUFXLEVBQUUsZUFBZSxDQUFDLENBQUM7SUFDdEMsQ0FBQztJQUVELFNBQVM7UUFDUCxPQUFPO1lBQ0wsS0FBSyxFQUFFLElBQUksQ0FBQyxLQUFLO1lBQ2pCLElBQUksRUFBRSxJQUFJLENBQUMsSUFBSTtZQUNmLEdBQUcsRUFBRSxJQUFJLENBQUMsR0FBRztZQUNiLEtBQUssRUFBRSxJQUFJLENBQUMsS0FBSztZQUNqQixNQUFNLEVBQUUsSUFBSSxDQUFDLE1BQU07WUFDbkIsS0FBSyxFQUFFLElBQUksQ0FBQyxLQUFLO1lBQ2pCLE1BQU0sRUFBRSxJQUFJLENBQUMsTUFBTTtZQUNuQixTQUFTLEVBQUUsSUFBSSxDQUFDLFNBQVM7WUFDekIsYUFBYSxFQUFFLElBQUksQ0FBQyxhQUFhO1lBQ2pDLFlBQVksRUFBRSxJQUFJLENBQUMsWUFBWTtZQUMvQixRQUFRLEVBQUUsSUFBSSxDQUFDLFFBQVE7WUFDdkIsY0FBYyxFQUFFLElBQUksQ0FBQyxjQUFjO1lBQ25DLFNBQVMsRUFBRSxJQUFJLENBQUMsU0FBUztTQUMxQixDQUFDO0lBQ0osQ0FBQzs7NkhBdkNVLCtCQUErQjtpSEFBL0IsK0JBQStCLHN2QkFQL0I7UUFDVDtZQUNFLE9BQU8sRUFBRSxpQkFBaUI7WUFDMUIsV0FBVyxFQUFFLFVBQVUsQ0FBQyxHQUFHLEVBQUUsQ0FBQywrQkFBK0IsQ0FBQztTQUMvRDtLQUNGLGlEQXhCUyxFQUFFOzRGQTBCRCwrQkFBK0I7a0JBNUIzQyxTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSwrQkFBK0I7b0JBQ3pDLFFBQVEsRUFBRSxFQUFFO29CQUNaLGVBQWUsRUFBRSx1QkFBdUIsQ0FBQyxNQUFNO29CQUMvQyxNQUFNLEVBQUU7d0JBQ04sUUFBUTt3QkFDUixJQUFJO3dCQUNKLE1BQU07d0JBQ04sT0FBTzt3QkFDUCxNQUFNO3dCQUVOLFdBQVc7d0JBQ1gsb0JBQW9CO3dCQUNwQixtQkFBbUI7d0JBQ25CLGlCQUFpQjt3QkFDakIsZ0JBQWdCO3dCQUNoQix5QkFBeUI7d0JBQ3pCLHVCQUF1Qjt3QkFDdkIsc0JBQXNCO3dCQUN0QixTQUFTO3FCQUNWO29CQUNELFNBQVMsRUFBRTt3QkFDVDs0QkFDRSxPQUFPLEVBQUUsaUJBQWlCOzRCQUMxQixXQUFXLEVBQUUsVUFBVSxDQUFDLEdBQUcsRUFBRSxnQ0FBZ0MsQ0FBQzt5QkFDL0Q7cUJBQ0Y7aUJBQ0Y7NEdBS21CLElBQUk7c0JBQXJCLEtBQUs7Z0JBQ0csS0FBSztzQkFBYixLQUFLO2dCQUNHLElBQUk7c0JBQVosS0FBSztnQkFDRyxHQUFHO3NCQUFYLEtBQUs7Z0JBQ0csS0FBSztzQkFBYixLQUFLO2dCQUNHLE1BQU07c0JBQWQsS0FBSztnQkFDRyxLQUFLO3NCQUFiLEtBQUs7Z0JBQ0csTUFBTTtzQkFBZCxLQUFLO2dCQUNHLFNBQVM7c0JBQWpCLEtBQUs7Z0JBQ0csYUFBYTtzQkFBckIsS0FBSztnQkFDRyxZQUFZO3NCQUFwQixLQUFLO2dCQUNHLFFBQVE7c0JBQWhCLEtBQUs7Z0JBQ0csY0FBYztzQkFBdEIsS0FBSztnQkFDRyxTQUFTO3NCQUFqQixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcbiAgQ29tcG9uZW50LFxuICBJbnB1dCxcbiAgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksXG4gIGZvcndhcmRSZWYsXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5pbXBvcnQge1xuICBUZENoYXJ0T3B0aW9uc1NlcnZpY2UsXG4gIElUZFNlcmllcyxcbiAgVGRTZXJpZXNEaXJlY3RpdmUsXG59IGZyb20gJ0Bjb3ZhbGVudC9lY2hhcnRzL2Jhc2UnO1xuXG5leHBvcnQgdHlwZSBUZFdvcmRjbG91ZFNoYXBlID1cbiAgfCAnY2lyY2xlJ1xuICB8ICdjYXJkaW9pZCdcbiAgfCAnZGlhbW9uZCdcbiAgfCAndHJpYW5nbGUtZm9yd2FyZCdcbiAgfCAndHJpYW5nbGUnXG4gIHwgJ3BlbnRhZ29uJ1xuICB8ICdzdGFyJztcblxuZXhwb3J0IGludGVyZmFjZSBJVGRXb3JkY2xvdWRUZXh0U3R5bGUge1xuICBub3JtYWw/OiB7XG4gICAgZm9udEZhbWlseT86IHN0cmluZztcbiAgICBmb250V2VpZ2h0Pzogc3RyaW5nO1xuICAgIGNvbG9yPzogc3RyaW5nIHwgKCh4OiBhbnkpID0+IHN0cmluZyk7XG4gIH07XG4gIGVtcGhhc2lzPzoge1xuICAgIHNoYWRvd0JsdXI/OiBudW1iZXI7XG4gICAgc2hhZG93Q29sb3I/OiBzdHJpbmc7XG4gIH07XG59XG5cbmV4cG9ydCBpbnRlcmZhY2UgSVRkV29yZENsb3VkRGF0YSB7XG4gIG5hbWU6IHN0cmluZztcbiAgdmFsdWU6IG51bWJlcjtcbiAgdGV4dFN0eWxlPzogSVRkV29yZGNsb3VkVGV4dFN0eWxlO1xufVxuXG5leHBvcnQgaW50ZXJmYWNlIElUZFdvcmRjbG91ZFNlcmllcyBleHRlbmRzIElUZFNlcmllcyB7XG4gIGRhdGE/OiBJVGRXb3JkQ2xvdWREYXRhW107XG4gIHNoYXBlPzogVGRXb3JkY2xvdWRTaGFwZTtcbiAgbGVmdD86IHN0cmluZyB8IG51bWJlcjtcbiAgdG9wPzogc3RyaW5nIHwgbnVtYmVyO1xuICB3aWR0aD86IHN0cmluZyB8IG51bWJlcjtcbiAgaGVpZ2h0Pzogc3RyaW5nIHwgbnVtYmVyO1xuICByaWdodD86IHN0cmluZyB8IG51bWJlcjtcbiAgYm90dG9tPzogc3RyaW5nIHwgbnVtYmVyO1xuICBzaXplUmFuZ2U/OiBudW1iZXJbXTtcbiAgcm90YXRpb25SYW5nZT86IG51bWJlcltdO1xuICByb3RhdGlvblN0ZXA/OiBudW1iZXI7XG4gIGdyaWRTaXplPzogbnVtYmVyO1xuICBkcmF3T3V0T2ZCb3VuZD86IGJvb2xlYW47XG4gIHRleHRTdHlsZT86IElUZFdvcmRjbG91ZFRleHRTdHlsZTtcbn1cblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAndGQtY2hhcnQtc2VyaWVzW3RkLXdvcmRDbG91ZF0nLFxuICB0ZW1wbGF0ZTogJycsXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBpbnB1dHM6IFtcbiAgICAnY29uZmlnJyxcbiAgICAnaWQnLFxuICAgICduYW1lJyxcbiAgICAnY29sb3InLFxuICAgICdkYXRhJyxcblxuICAgICdhbmltYXRpb24nLFxuICAgICdhbmltYXRpb25UaHJlc2hvbGQnLFxuICAgICdhbmltYXRpb25EdXJhdGlvbicsXG4gICAgJ2FuaW1hdGlvbkVhc2luZycsXG4gICAgJ2FuaW1hdGlvbkRlbGF5JyxcbiAgICAnYW5pbWF0aW9uRHVyYXRpb25VcGRhdGUnLFxuICAgICdhbmltYXRpb25FYXNpbmdVcGRhdGUnLFxuICAgICdhbmltYXRpb25EZWxheVVwZGF0ZScsXG4gICAgJ3Rvb2x0aXAnLFxuICBdLFxuICBwcm92aWRlcnM6IFtcbiAgICB7XG4gICAgICBwcm92aWRlOiBUZFNlcmllc0RpcmVjdGl2ZSxcbiAgICAgIHVzZUV4aXN0aW5nOiBmb3J3YXJkUmVmKCgpID0+IFRkQ2hhcnRTZXJpZXNXb3JkY2xvdWRDb21wb25lbnQpLFxuICAgIH0sXG4gIF0sXG59KVxuZXhwb3J0IGNsYXNzIFRkQ2hhcnRTZXJpZXNXb3JkY2xvdWRDb21wb25lbnRcbiAgZXh0ZW5kcyBUZFNlcmllc0RpcmVjdGl2ZVxuICBpbXBsZW1lbnRzIElUZFdvcmRjbG91ZFNlcmllc1xue1xuICBASW5wdXQoKSBvdmVycmlkZSBkYXRhPzogSVRkV29yZENsb3VkRGF0YVtdO1xuICBASW5wdXQoKSBzaGFwZT86IFRkV29yZGNsb3VkU2hhcGU7XG4gIEBJbnB1dCgpIGxlZnQ/OiBzdHJpbmcgfCBudW1iZXI7XG4gIEBJbnB1dCgpIHRvcD86IHN0cmluZyB8IG51bWJlcjtcbiAgQElucHV0KCkgd2lkdGg/OiBzdHJpbmcgfCBudW1iZXI7XG4gIEBJbnB1dCgpIGhlaWdodD86IHN0cmluZyB8IG51bWJlcjtcbiAgQElucHV0KCkgcmlnaHQ/OiBzdHJpbmcgfCBudW1iZXI7XG4gIEBJbnB1dCgpIGJvdHRvbT86IHN0cmluZyB8IG51bWJlcjtcbiAgQElucHV0KCkgc2l6ZVJhbmdlPzogbnVtYmVyW107XG4gIEBJbnB1dCgpIHJvdGF0aW9uUmFuZ2U/OiBudW1iZXJbXTtcbiAgQElucHV0KCkgcm90YXRpb25TdGVwPzogbnVtYmVyO1xuICBASW5wdXQoKSBncmlkU2l6ZT86IG51bWJlcjtcbiAgQElucHV0KCkgZHJhd091dE9mQm91bmQ/OiBib29sZWFuO1xuICBASW5wdXQoKSB0ZXh0U3R5bGU/OiBJVGRXb3JkY2xvdWRUZXh0U3R5bGU7XG5cbiAgY29uc3RydWN0b3IoX29wdGlvbnNTZXJ2aWNlOiBUZENoYXJ0T3B0aW9uc1NlcnZpY2UpIHtcbiAgICBzdXBlcignd29yZENsb3VkJywgX29wdGlvbnNTZXJ2aWNlKTtcbiAgfVxuXG4gIGdldENvbmZpZygpOiBhbnkge1xuICAgIHJldHVybiB7XG4gICAgICBzaGFwZTogdGhpcy5zaGFwZSxcbiAgICAgIGxlZnQ6IHRoaXMubGVmdCxcbiAgICAgIHRvcDogdGhpcy50b3AsXG4gICAgICB3aWR0aDogdGhpcy53aWR0aCxcbiAgICAgIGhlaWdodDogdGhpcy5oZWlnaHQsXG4gICAgICByaWdodDogdGhpcy5yaWdodCxcbiAgICAgIGJvdHRvbTogdGhpcy5ib3R0b20sXG4gICAgICBzaXplUmFuZ2U6IHRoaXMuc2l6ZVJhbmdlLFxuICAgICAgcm90YXRpb25SYW5nZTogdGhpcy5yb3RhdGlvblJhbmdlLFxuICAgICAgcm90YXRpb25TdGVwOiB0aGlzLnJvdGF0aW9uU3RlcCxcbiAgICAgIGdyaWRTaXplOiB0aGlzLmdyaWRTaXplLFxuICAgICAgZHJhd091dE9mQm91bmQ6IHRoaXMuZHJhd091dE9mQm91bmQsXG4gICAgICB0ZXh0U3R5bGU6IHRoaXMudGV4dFN0eWxlLFxuICAgIH07XG4gIH1cbn1cbiJdfQ==
@@ -6,11 +6,11 @@ export const WORDCLOUD_MODULE_COMPONENTS = [
6
6
  TdChartSeriesWordcloudComponent,
7
7
  ];
8
8
  export class CovalentWordcloudEchartsModule {
9
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: CovalentWordcloudEchartsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
10
- static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.1.7", ngImport: i0, type: CovalentWordcloudEchartsModule, declarations: [TdChartSeriesWordcloudComponent], imports: [CommonModule], exports: [TdChartSeriesWordcloudComponent] });
11
- static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: CovalentWordcloudEchartsModule, imports: [CommonModule] });
12
9
  }
13
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: CovalentWordcloudEchartsModule, decorators: [{
10
+ CovalentWordcloudEchartsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CovalentWordcloudEchartsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
11
+ CovalentWordcloudEchartsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: CovalentWordcloudEchartsModule, declarations: [TdChartSeriesWordcloudComponent], imports: [CommonModule], exports: [TdChartSeriesWordcloudComponent] });
12
+ CovalentWordcloudEchartsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CovalentWordcloudEchartsModule, imports: [CommonModule] });
13
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CovalentWordcloudEchartsModule, decorators: [{
14
14
  type: NgModule,
15
15
  args: [{
16
16
  imports: [CommonModule],
@@ -18,4 +18,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImpor
18
18
  exports: [WORDCLOUD_MODULE_COMPONENTS],
19
19
  }]
20
20
  }] });
21
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid29yZGNsb3VkLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL2xpYnMvYW5ndWxhci1lY2hhcnRzL3dvcmRjbG91ZC9zcmMvd29yZGNsb3VkLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsUUFBUSxFQUFRLE1BQU0sZUFBZSxDQUFDO0FBQy9DLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUUvQyxPQUFPLEVBQUUsK0JBQStCLEVBQUUsTUFBTSx1QkFBdUIsQ0FBQzs7QUFFeEUsTUFBTSxDQUFDLE1BQU0sMkJBQTJCLEdBQWdCO0lBQ3RELCtCQUErQjtDQUNoQyxDQUFDO0FBT0YsTUFBTSxPQUFPLDhCQUE4Qjt1R0FBOUIsOEJBQThCO3dHQUE5Qiw4QkFBOEIsaUJBUnpDLCtCQUErQixhQUlyQixZQUFZLGFBSnRCLCtCQUErQjt3R0FRcEIsOEJBQThCLFlBSi9CLFlBQVk7OzJGQUlYLDhCQUE4QjtrQkFMMUMsUUFBUTttQkFBQztvQkFDUixPQUFPLEVBQUUsQ0FBQyxZQUFZLENBQUM7b0JBQ3ZCLFlBQVksRUFBRSxDQUFDLDJCQUEyQixDQUFDO29CQUMzQyxPQUFPLEVBQUUsQ0FBQywyQkFBMkIsQ0FBQztpQkFDdkMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBOZ01vZHVsZSwgVHlwZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcblxuaW1wb3J0IHsgVGRDaGFydFNlcmllc1dvcmRjbG91ZENvbXBvbmVudCB9IGZyb20gJy4vd29yZGNsb3VkLmNvbXBvbmVudCc7XG5cbmV4cG9ydCBjb25zdCBXT1JEQ0xPVURfTU9EVUxFX0NPTVBPTkVOVFM6IFR5cGU8YW55PltdID0gW1xuICBUZENoYXJ0U2VyaWVzV29yZGNsb3VkQ29tcG9uZW50LFxuXTtcblxuQE5nTW9kdWxlKHtcbiAgaW1wb3J0czogW0NvbW1vbk1vZHVsZV0sXG4gIGRlY2xhcmF0aW9uczogW1dPUkRDTE9VRF9NT0RVTEVfQ09NUE9ORU5UU10sXG4gIGV4cG9ydHM6IFtXT1JEQ0xPVURfTU9EVUxFX0NPTVBPTkVOVFNdLFxufSlcbmV4cG9ydCBjbGFzcyBDb3ZhbGVudFdvcmRjbG91ZEVjaGFydHNNb2R1bGUge31cbiJdfQ==
21
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid29yZGNsb3VkLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL2xpYnMvYW5ndWxhci1lY2hhcnRzL3dvcmRjbG91ZC9zcmMvd29yZGNsb3VkLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsUUFBUSxFQUFRLE1BQU0sZUFBZSxDQUFDO0FBQy9DLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUUvQyxPQUFPLEVBQUUsK0JBQStCLEVBQUUsTUFBTSx1QkFBdUIsQ0FBQzs7QUFFeEUsTUFBTSxDQUFDLE1BQU0sMkJBQTJCLEdBQWdCO0lBQ3RELCtCQUErQjtDQUNoQyxDQUFDO0FBT0YsTUFBTSxPQUFPLDhCQUE4Qjs7NEhBQTlCLDhCQUE4Qjs2SEFBOUIsOEJBQThCLGlCQVJ6QywrQkFBK0IsYUFJckIsWUFBWSxhQUp0QiwrQkFBK0I7NkhBUXBCLDhCQUE4QixZQUovQixZQUFZOzRGQUlYLDhCQUE4QjtrQkFMMUMsUUFBUTttQkFBQztvQkFDUixPQUFPLEVBQUUsQ0FBQyxZQUFZLENBQUM7b0JBQ3ZCLFlBQVksRUFBRSxDQUFDLDJCQUEyQixDQUFDO29CQUMzQyxPQUFPLEVBQUUsQ0FBQywyQkFBMkIsQ0FBQztpQkFDdkMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBOZ01vZHVsZSwgVHlwZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcblxuaW1wb3J0IHsgVGRDaGFydFNlcmllc1dvcmRjbG91ZENvbXBvbmVudCB9IGZyb20gJy4vd29yZGNsb3VkLmNvbXBvbmVudCc7XG5cbmV4cG9ydCBjb25zdCBXT1JEQ0xPVURfTU9EVUxFX0NPTVBPTkVOVFM6IFR5cGU8YW55PltdID0gW1xuICBUZENoYXJ0U2VyaWVzV29yZGNsb3VkQ29tcG9uZW50LFxuXTtcblxuQE5nTW9kdWxlKHtcbiAgaW1wb3J0czogW0NvbW1vbk1vZHVsZV0sXG4gIGRlY2xhcmF0aW9uczogW1dPUkRDTE9VRF9NT0RVTEVfQ09NUE9ORU5UU10sXG4gIGV4cG9ydHM6IFtXT1JEQ0xPVURfTU9EVUxFX0NPTVBPTkVOVFNdLFxufSlcbmV4cG9ydCBjbGFzcyBDb3ZhbGVudFdvcmRjbG91ZEVjaGFydHNNb2R1bGUge31cbiJdfQ==
@@ -5,34 +5,6 @@ import * as i1 from '@covalent/echarts/base';
5
5
  import { TdSeriesDirective } from '@covalent/echarts/base';
6
6
 
7
7
  class TdChartSeriesBarComponent extends TdSeriesDirective {
8
- coordinateSystem;
9
- xAxisIndex;
10
- yAxisIndex;
11
- legendHoverLink;
12
- stack;
13
- cursor;
14
- label;
15
- itemStyle;
16
- emphasis;
17
- barWidth;
18
- barMaxWidth;
19
- barMinHeight;
20
- barGap;
21
- barCategoryGap;
22
- large;
23
- largeThreshold;
24
- progressive;
25
- progressiveThreshold;
26
- progressiveChunkMode;
27
- dimensions;
28
- encode;
29
- seriesLayoutBy;
30
- datasetIndex;
31
- markPoint;
32
- markLine;
33
- markArea;
34
- zlevel;
35
- z;
36
8
  constructor(_optionsService) {
37
9
  super('bar', _optionsService);
38
10
  }
@@ -68,15 +40,15 @@ class TdChartSeriesBarComponent extends TdSeriesDirective {
68
40
  z: this.z,
69
41
  };
70
42
  }
71
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: TdChartSeriesBarComponent, deps: [{ token: i1.TdChartOptionsService }], target: i0.ɵɵFactoryTarget.Component });
72
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.7", type: TdChartSeriesBarComponent, selector: "td-chart-series[td-bar]", inputs: { config: "config", id: "id", name: "name", color: "color", data: "data", animation: "animation", animationThreshold: "animationThreshold", animationDuration: "animationDuration", animationEasing: "animationEasing", animationDelay: "animationDelay", animationDurationUpdate: "animationDurationUpdate", animationEasingUpdate: "animationEasingUpdate", animationDelayUpdate: "animationDelayUpdate", tooltip: "tooltip", coordinateSystem: "coordinateSystem", xAxisIndex: "xAxisIndex", yAxisIndex: "yAxisIndex", legendHoverLink: "legendHoverLink", stack: "stack", cursor: "cursor", label: "label", itemStyle: "itemStyle", emphasis: "emphasis", barWidth: "barWidth", barMaxWidth: "barMaxWidth", barMinHeight: "barMinHeight", barGap: "barGap", barCategoryGap: "barCategoryGap", large: "large", largeThreshold: "largeThreshold", progressive: "progressive", progressiveThreshold: "progressiveThreshold", progressiveChunkMode: "progressiveChunkMode", dimensions: "dimensions", encode: "encode", seriesLayoutBy: "seriesLayoutBy", datasetIndex: "datasetIndex", markPoint: "markPoint", markLine: "markLine", markArea: "markArea", zlevel: "zlevel", z: "z" }, providers: [
73
- {
74
- provide: TdSeriesDirective,
75
- useExisting: forwardRef(() => TdChartSeriesBarComponent),
76
- },
77
- ], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
78
43
  }
79
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: TdChartSeriesBarComponent, decorators: [{
44
+ TdChartSeriesBarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TdChartSeriesBarComponent, deps: [{ token: i1.TdChartOptionsService }], target: i0.ɵɵFactoryTarget.Component });
45
+ TdChartSeriesBarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: TdChartSeriesBarComponent, selector: "td-chart-series[td-bar]", inputs: { config: "config", id: "id", name: "name", color: "color", data: "data", animation: "animation", animationThreshold: "animationThreshold", animationDuration: "animationDuration", animationEasing: "animationEasing", animationDelay: "animationDelay", animationDurationUpdate: "animationDurationUpdate", animationEasingUpdate: "animationEasingUpdate", animationDelayUpdate: "animationDelayUpdate", tooltip: "tooltip", coordinateSystem: "coordinateSystem", xAxisIndex: "xAxisIndex", yAxisIndex: "yAxisIndex", legendHoverLink: "legendHoverLink", stack: "stack", cursor: "cursor", label: "label", itemStyle: "itemStyle", emphasis: "emphasis", barWidth: "barWidth", barMaxWidth: "barMaxWidth", barMinHeight: "barMinHeight", barGap: "barGap", barCategoryGap: "barCategoryGap", large: "large", largeThreshold: "largeThreshold", progressive: "progressive", progressiveThreshold: "progressiveThreshold", progressiveChunkMode: "progressiveChunkMode", dimensions: "dimensions", encode: "encode", seriesLayoutBy: "seriesLayoutBy", datasetIndex: "datasetIndex", markPoint: "markPoint", markLine: "markLine", markArea: "markArea", zlevel: "zlevel", z: "z" }, providers: [
46
+ {
47
+ provide: TdSeriesDirective,
48
+ useExisting: forwardRef(() => TdChartSeriesBarComponent),
49
+ },
50
+ ], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
51
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TdChartSeriesBarComponent, decorators: [{
80
52
  type: Component,
81
53
  args: [{
82
54
  selector: 'td-chart-series[td-bar]',
@@ -165,11 +137,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImpor
165
137
 
166
138
  const BAR_MODULE_COMPONENTS = [TdChartSeriesBarComponent];
167
139
  class CovalentBarEchartsModule {
168
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: CovalentBarEchartsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
169
- static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.1.7", ngImport: i0, type: CovalentBarEchartsModule, declarations: [TdChartSeriesBarComponent], imports: [CommonModule], exports: [TdChartSeriesBarComponent] });
170
- static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: CovalentBarEchartsModule, imports: [CommonModule] });
171
140
  }
172
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: CovalentBarEchartsModule, decorators: [{
141
+ CovalentBarEchartsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CovalentBarEchartsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
142
+ CovalentBarEchartsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: CovalentBarEchartsModule, declarations: [TdChartSeriesBarComponent], imports: [CommonModule], exports: [TdChartSeriesBarComponent] });
143
+ CovalentBarEchartsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CovalentBarEchartsModule, imports: [CommonModule] });
144
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CovalentBarEchartsModule, decorators: [{
173
145
  type: NgModule,
174
146
  args: [{
175
147
  imports: [CommonModule],
@@ -0,0 +1 @@
1
+ {"version":3,"file":"covalent-echarts-bar.mjs","sources":["../../../../libs/angular-echarts/bar/src/bar.component.ts","../../../../libs/angular-echarts/bar/src/bar.module.ts","../../../../libs/angular-echarts/bar/src/covalent-echarts-bar.ts"],"sourcesContent":["import {\n Component,\n Input,\n ChangeDetectionStrategy,\n forwardRef,\n} from '@angular/core';\nimport {\n TdChartOptionsService,\n TdCoordinateSystem,\n ITdItemStyle,\n ITdEmphasis,\n TdSeriesLayoutBy,\n ITdMarkPoint,\n ITdMarkLine,\n ITdMarkArea,\n ITdSeries,\n ITdLabel,\n TdProgressiveChunkMode,\n TdSeriesDirective,\n} from '@covalent/echarts/base';\n\nexport interface ITdBarSeries extends ITdSeries {\n legendHoverLink?: boolean;\n coordinateSystem?: TdCoordinateSystem;\n xAxisIndex?: number;\n yAxisIndex?: number;\n Label?: ITdLabel;\n itemStyle?: ITdItemStyle;\n emphasis?: ITdEmphasis;\n stack?: string;\n cursor?: string;\n barWidth?: number | string;\n barMaxWidth?: number | string;\n barMinHeight?: number;\n barGap?: string;\n barCategoryGap?: string;\n large?: boolean;\n largeThreshold?: number;\n progressive?: number;\n progressiveThreshold?: number;\n progressiveChunkMode?: TdProgressiveChunkMode;\n dimensions?: any[];\n encode?: any;\n seriesLayoutBy?: TdSeriesLayoutBy;\n datasetIndex?: number;\n data?: any[];\n markPoint?: ITdMarkPoint;\n markLine?: ITdMarkLine;\n markArea?: ITdMarkArea;\n Zlevel?: 0;\n z?: number;\n silent?: boolean;\n}\n\n@Component({\n selector: 'td-chart-series[td-bar]',\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n inputs: [\n 'config',\n 'id',\n 'name',\n 'color',\n 'data',\n\n 'animation',\n 'animationThreshold',\n 'animationDuration',\n 'animationEasing',\n 'animationDelay',\n 'animationDurationUpdate',\n 'animationEasingUpdate',\n 'animationDelayUpdate',\n 'tooltip',\n ],\n providers: [\n {\n provide: TdSeriesDirective,\n useExisting: forwardRef(() => TdChartSeriesBarComponent),\n },\n ],\n})\nexport class TdChartSeriesBarComponent\n extends TdSeriesDirective\n implements ITdBarSeries\n{\n @Input() coordinateSystem?: TdCoordinateSystem;\n @Input() xAxisIndex?: number;\n @Input() yAxisIndex?: number;\n @Input() legendHoverLink?: boolean;\n @Input() stack?: string;\n @Input() cursor?: string;\n @Input() label?: any;\n @Input() itemStyle?: ITdItemStyle;\n @Input() emphasis?: ITdEmphasis;\n @Input() barWidth?: number;\n @Input() barMaxWidth?: number;\n @Input() barMinHeight?: number;\n @Input() barGap?: string;\n @Input() barCategoryGap?: string;\n @Input() large?: boolean;\n @Input() largeThreshold?: number;\n @Input() progressive?: number;\n @Input() progressiveThreshold?: number;\n @Input() progressiveChunkMode?: TdProgressiveChunkMode;\n @Input() dimensions?: any[];\n @Input() encode: any;\n @Input() seriesLayoutBy?: TdSeriesLayoutBy;\n @Input() datasetIndex?: number;\n @Input() markPoint?: ITdMarkPoint;\n @Input() markLine?: ITdMarkLine;\n @Input() markArea?: ITdMarkArea;\n @Input() zlevel?: number;\n @Input() z?: number;\n\n constructor(_optionsService: TdChartOptionsService) {\n super('bar', _optionsService);\n }\n\n getConfig(): any {\n return {\n coordinateSystem: this.coordinateSystem,\n xAxisIndex: this.xAxisIndex,\n yAxisIndex: this.yAxisIndex,\n legendHoverLink: this.legendHoverLink,\n stack: this.stack,\n cursor: this.cursor,\n label: this.label,\n itemStyle: this.itemStyle,\n emphasis: this.emphasis,\n barWidth: this.barWidth,\n barMaxWidth: this.barMaxWidth,\n barMinHeight: this.barMinHeight,\n barGap: this.barGap,\n barCategoryGap: this.barCategoryGap,\n large: this.large,\n largeThreshold: this.largeThreshold,\n progressive: this.progressive,\n progressiveThreshold: this.progressiveThreshold,\n progressiveChunkMode: this.progressiveChunkMode,\n dimensions: this.dimensions,\n encode: this.encode,\n seriesLayoutBy: this.seriesLayoutBy,\n datasetIndex: this.datasetIndex,\n markPoint: this.markPoint,\n markLine: this.markLine,\n markArea: this.markArea,\n zlevel: this.zlevel,\n z: this.z,\n };\n }\n}\n","import { NgModule, Type } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { TdChartSeriesBarComponent } from './bar.component';\n\nexport const BAR_MODULE_COMPONENTS: Type<any>[] = [TdChartSeriesBarComponent];\n\n@NgModule({\n imports: [CommonModule],\n declarations: [BAR_MODULE_COMPONENTS],\n exports: [BAR_MODULE_COMPONENTS],\n})\nexport class CovalentBarEchartsModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":[],"mappings":"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"}