@covalent/echarts 6.3.0 → 7.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 (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/clustering/clustering.component.d.ts +1 -1
  9. package/esm2022/bar/bar.component.mjs +163 -0
  10. package/{esm2020 → esm2022}/bar/bar.module.mjs +5 -5
  11. package/esm2022/base/axis/axis.component.mjs +157 -0
  12. package/esm2022/base/axis/x-axis.component.mjs +56 -0
  13. package/esm2022/base/axis/y-axis.component.mjs +56 -0
  14. package/{esm2020 → esm2022}/base/base.module.mjs +11 -11
  15. package/esm2022/base/chart-options.service.mjs +63 -0
  16. package/esm2022/base/chart.component.mjs +211 -0
  17. package/esm2022/base/dataset/dataset.component.mjs +57 -0
  18. package/esm2022/base/series/series.component.mjs +106 -0
  19. package/esm2022/clustering/clustering.component.mjs +275 -0
  20. package/{esm2020 → esm2022}/clustering/clustering.module.mjs +5 -5
  21. package/esm2022/graph/graph.component.mjs +230 -0
  22. package/{esm2020 → esm2022}/graph/graph.module.mjs +5 -5
  23. package/esm2022/histogram/histogram.component.mjs +127 -0
  24. package/{esm2020 → esm2022}/histogram/histogram.module.mjs +5 -5
  25. package/esm2022/line/line.component.mjs +195 -0
  26. package/{esm2020 → esm2022}/line/line.module.mjs +5 -5
  27. package/esm2022/map/map.component.mjs +159 -0
  28. package/{esm2020 → esm2022}/map/map.module.mjs +5 -5
  29. package/esm2022/pie/pie.component.mjs +153 -0
  30. package/{esm2020 → esm2022}/pie/pie.module.mjs +5 -5
  31. package/esm2022/regression/regression.component.mjs +140 -0
  32. package/{esm2020 → esm2022}/regression/regression.module.mjs +5 -5
  33. package/esm2022/sankey/sankey.component.mjs +139 -0
  34. package/{esm2020 → esm2022}/sankey/sankey.module.mjs +5 -5
  35. package/esm2022/scatter/scatter.component.mjs +175 -0
  36. package/{esm2020 → esm2022}/scatter/scatter.module.mjs +5 -5
  37. package/esm2022/toolbox/toolbox.component.mjs +149 -0
  38. package/{esm2020 → esm2022}/toolbox/toolbox.module.mjs +7 -7
  39. package/esm2022/tooltip/series-tooltip.component.mjs +112 -0
  40. package/esm2022/tooltip/tooltip.component.mjs +168 -0
  41. package/{esm2020 → esm2022}/tooltip/tooltip.module.mjs +9 -9
  42. package/esm2022/tree/tree.component.mjs +139 -0
  43. package/{esm2020 → esm2022}/tree/tree.module.mjs +5 -5
  44. package/esm2022/treemap/treemap.component.mjs +182 -0
  45. package/{esm2020 → esm2022}/treemap/treemap.module.mjs +5 -5
  46. package/esm2022/wordcloud/wordcloud.component.mjs +106 -0
  47. package/{esm2020 → esm2022}/wordcloud/wordcloud.module.mjs +5 -5
  48. package/{fesm2015 → fesm2022}/covalent-echarts-bar.mjs +40 -12
  49. package/fesm2022/covalent-echarts-bar.mjs.map +1 -0
  50. package/{fesm2020 → fesm2022}/covalent-echarts-base.mjs +135 -69
  51. package/{fesm2015 → fesm2022}/covalent-echarts-base.mjs.map +1 -1
  52. package/{fesm2015 → fesm2022}/covalent-echarts-clustering.mjs +54 -12
  53. package/{fesm2020 → fesm2022}/covalent-echarts-clustering.mjs.map +1 -1
  54. package/{fesm2020 → fesm2022}/covalent-echarts-graph.mjs +57 -12
  55. package/{fesm2015 → fesm2022}/covalent-echarts-graph.mjs.map +1 -1
  56. package/{fesm2020 → fesm2022}/covalent-echarts-histogram.mjs +14 -12
  57. package/{fesm2020 → fesm2022}/covalent-echarts-histogram.mjs.map +1 -1
  58. package/{fesm2020 → fesm2022}/covalent-echarts-line.mjs +48 -12
  59. package/fesm2022/covalent-echarts-line.mjs.map +1 -0
  60. package/{fesm2015 → fesm2022}/covalent-echarts-map.mjs +39 -12
  61. package/{fesm2020 → fesm2022}/covalent-echarts-map.mjs.map +1 -1
  62. package/{fesm2020 → fesm2022}/covalent-echarts-pie.mjs +38 -12
  63. package/fesm2022/covalent-echarts-pie.mjs.map +1 -0
  64. package/{fesm2020 → fesm2022}/covalent-echarts-regression.mjs +15 -12
  65. package/fesm2022/covalent-echarts-regression.mjs.map +1 -0
  66. package/{fesm2015 → fesm2022}/covalent-echarts-sankey.mjs +34 -12
  67. package/fesm2022/covalent-echarts-sankey.mjs.map +1 -0
  68. package/{fesm2015 → fesm2022}/covalent-echarts-scatter.mjs +43 -12
  69. package/fesm2022/covalent-echarts-scatter.mjs.map +1 -0
  70. package/{fesm2020 → fesm2022}/covalent-echarts-toolbox.mjs +37 -23
  71. package/{fesm2020 → fesm2022}/covalent-echarts-toolbox.mjs.map +1 -1
  72. package/{fesm2020 → fesm2022}/covalent-echarts-tooltip.mjs +69 -47
  73. package/{fesm2015 → fesm2022}/covalent-echarts-tooltip.mjs.map +1 -1
  74. package/{fesm2020 → fesm2022}/covalent-echarts-tree.mjs +34 -12
  75. package/{fesm2015 → fesm2022}/covalent-echarts-tree.mjs.map +1 -1
  76. package/{fesm2020 → fesm2022}/covalent-echarts-treemap.mjs +46 -13
  77. package/fesm2022/covalent-echarts-treemap.mjs.map +1 -0
  78. package/{fesm2020 → fesm2022}/covalent-echarts-wordcloud.mjs +26 -12
  79. package/fesm2022/covalent-echarts-wordcloud.mjs.map +1 -0
  80. package/graph/graph.component.d.ts +1 -1
  81. package/histogram/histogram.component.d.ts +1 -1
  82. package/line/line.component.d.ts +1 -1
  83. package/map/map.component.d.ts +1 -1
  84. package/package.json +57 -96
  85. package/pie/pie.component.d.ts +1 -1
  86. package/regression/regression.component.d.ts +1 -1
  87. package/sankey/sankey.component.d.ts +1 -1
  88. package/scatter/scatter.component.d.ts +1 -1
  89. package/toolbox/toolbox.component.d.ts +1 -1
  90. package/tooltip/series-tooltip.component.d.ts +1 -1
  91. package/tooltip/tooltip.component.d.ts +1 -1
  92. package/tree/tree.component.d.ts +1 -1
  93. package/treemap/treemap.component.d.ts +2 -2
  94. package/wordcloud/wordcloud.component.d.ts +1 -1
  95. package/base/src/axis/README.md +0 -58
  96. package/base/src/dataset/README.md +0 -80
  97. package/esm2020/bar/bar.component.mjs +0 -135
  98. package/esm2020/base/axis/axis.component.mjs +0 -127
  99. package/esm2020/base/axis/x-axis.component.mjs +0 -55
  100. package/esm2020/base/axis/y-axis.component.mjs +0 -55
  101. package/esm2020/base/chart-options.service.mjs +0 -65
  102. package/esm2020/base/chart.component.mjs +0 -195
  103. package/esm2020/base/dataset/dataset.component.mjs +0 -52
  104. package/esm2020/base/series/series.component.mjs +0 -91
  105. package/esm2020/clustering/clustering.component.mjs +0 -233
  106. package/esm2020/graph/graph.component.mjs +0 -185
  107. package/esm2020/histogram/histogram.component.mjs +0 -125
  108. package/esm2020/line/line.component.mjs +0 -159
  109. package/esm2020/map/map.component.mjs +0 -132
  110. package/esm2020/pie/pie.component.mjs +0 -127
  111. package/esm2020/regression/regression.component.mjs +0 -137
  112. package/esm2020/sankey/sankey.component.mjs +0 -117
  113. package/esm2020/scatter/scatter.component.mjs +0 -144
  114. package/esm2020/toolbox/toolbox.component.mjs +0 -135
  115. package/esm2020/tooltip/series-tooltip.component.mjs +0 -102
  116. package/esm2020/tooltip/tooltip.component.mjs +0 -156
  117. package/esm2020/tree/tree.component.mjs +0 -117
  118. package/esm2020/treemap/treemap.component.mjs +0 -149
  119. package/esm2020/wordcloud/wordcloud.component.mjs +0 -92
  120. package/fesm2015/covalent-echarts-bar.mjs.map +0 -1
  121. package/fesm2015/covalent-echarts-base.mjs +0 -4931
  122. package/fesm2015/covalent-echarts-clustering.mjs.map +0 -1
  123. package/fesm2015/covalent-echarts-graph.mjs +0 -210
  124. package/fesm2015/covalent-echarts-histogram.mjs +0 -151
  125. package/fesm2015/covalent-echarts-histogram.mjs.map +0 -1
  126. package/fesm2015/covalent-echarts-line.mjs +0 -182
  127. package/fesm2015/covalent-echarts-line.mjs.map +0 -1
  128. package/fesm2015/covalent-echarts-map.mjs.map +0 -1
  129. package/fesm2015/covalent-echarts-pie.mjs +0 -150
  130. package/fesm2015/covalent-echarts-pie.mjs.map +0 -1
  131. package/fesm2015/covalent-echarts-regression.mjs +0 -163
  132. package/fesm2015/covalent-echarts-regression.mjs.map +0 -1
  133. package/fesm2015/covalent-echarts-sankey.mjs.map +0 -1
  134. package/fesm2015/covalent-echarts-scatter.mjs.map +0 -1
  135. package/fesm2015/covalent-echarts-toolbox.mjs +0 -158
  136. package/fesm2015/covalent-echarts-toolbox.mjs.map +0 -1
  137. package/fesm2015/covalent-echarts-tooltip.mjs +0 -283
  138. package/fesm2015/covalent-echarts-tree.mjs +0 -140
  139. package/fesm2015/covalent-echarts-treemap.mjs +0 -174
  140. package/fesm2015/covalent-echarts-treemap.mjs.map +0 -1
  141. package/fesm2015/covalent-echarts-wordcloud.mjs +0 -117
  142. package/fesm2015/covalent-echarts-wordcloud.mjs.map +0 -1
  143. package/fesm2020/covalent-echarts-bar.mjs +0 -158
  144. package/fesm2020/covalent-echarts-bar.mjs.map +0 -1
  145. package/fesm2020/covalent-echarts-base.mjs.map +0 -1
  146. package/fesm2020/covalent-echarts-clustering.mjs +0 -258
  147. package/fesm2020/covalent-echarts-graph.mjs.map +0 -1
  148. package/fesm2020/covalent-echarts-line.mjs.map +0 -1
  149. package/fesm2020/covalent-echarts-map.mjs +0 -155
  150. package/fesm2020/covalent-echarts-pie.mjs.map +0 -1
  151. package/fesm2020/covalent-echarts-regression.mjs.map +0 -1
  152. package/fesm2020/covalent-echarts-sankey.mjs +0 -142
  153. package/fesm2020/covalent-echarts-sankey.mjs.map +0 -1
  154. package/fesm2020/covalent-echarts-scatter.mjs +0 -169
  155. package/fesm2020/covalent-echarts-scatter.mjs.map +0 -1
  156. package/fesm2020/covalent-echarts-tooltip.mjs.map +0 -1
  157. package/fesm2020/covalent-echarts-tree.mjs.map +0 -1
  158. package/fesm2020/covalent-echarts-treemap.mjs.map +0 -1
  159. package/fesm2020/covalent-echarts-wordcloud.mjs.map +0 -1
  160. package/fesm2020/covalent-echarts.mjs +0 -4
  161. package/fesm2020/covalent-echarts.mjs.map +0 -1
  162. /package/{esm2020 → esm2022}/bar/covalent-echarts-bar.mjs +0 -0
  163. /package/{esm2020 → esm2022}/bar/public_api.mjs +0 -0
  164. /package/{esm2020 → esm2022}/base/axis/axis.interface.mjs +0 -0
  165. /package/{esm2020 → esm2022}/base/base.types.mjs +0 -0
  166. /package/{esm2020 → esm2022}/base/covalent-echarts-base.mjs +0 -0
  167. /package/{esm2020 → esm2022}/base/public_api.mjs +0 -0
  168. /package/{esm2020 → esm2022}/base/series/series.interface.mjs +0 -0
  169. /package/{esm2020 → esm2022}/base/themes/aqua-splash.mjs +0 -0
  170. /package/{esm2020 → esm2022}/base/themes/california-coast.mjs +0 -0
  171. /package/{esm2020 → esm2022}/base/themes/hawaiian-sunrise.mjs +0 -0
  172. /package/{esm2020 → esm2022}/base/themes/passion-flower.mjs +0 -0
  173. /package/{esm2020 → esm2022}/base/themes/razzleberry-pie.mjs +0 -0
  174. /package/{esm2020 → esm2022}/base/themes/teradata-classic.mjs +0 -0
  175. /package/{esm2020 → esm2022}/base/themes/teradata-default.mjs +0 -0
  176. /package/{esm2020 → esm2022}/base/themes/urban-sunrise.mjs +0 -0
  177. /package/{esm2020 → esm2022}/base/themes/volcanic-eruption.mjs +0 -0
  178. /package/{esm2020 → esm2022}/base/utils/assign-defined.mjs +0 -0
  179. /package/{esm2020 → esm2022}/base/utils/echarts.mjs +0 -0
  180. /package/{esm2020 → esm2022}/base/utils/index.mjs +0 -0
  181. /package/{esm2020 → esm2022}/clustering/covalent-echarts-clustering.mjs +0 -0
  182. /package/{esm2020 → esm2022}/clustering/public_api.mjs +0 -0
  183. /package/{esm2020 → esm2022}/covalent-echarts.mjs +0 -0
  184. /package/{esm2020 → esm2022}/graph/covalent-echarts-graph.mjs +0 -0
  185. /package/{esm2020 → esm2022}/graph/public_api.mjs +0 -0
  186. /package/{esm2020 → esm2022}/histogram/covalent-echarts-histogram.mjs +0 -0
  187. /package/{esm2020 → esm2022}/histogram/public_api.mjs +0 -0
  188. /package/{esm2020 → esm2022}/line/covalent-echarts-line.mjs +0 -0
  189. /package/{esm2020 → esm2022}/line/public_api.mjs +0 -0
  190. /package/{esm2020 → esm2022}/map/covalent-echarts-map.mjs +0 -0
  191. /package/{esm2020 → esm2022}/map/public_api.mjs +0 -0
  192. /package/{esm2020 → esm2022}/pie/covalent-echarts-pie.mjs +0 -0
  193. /package/{esm2020 → esm2022}/pie/public_api.mjs +0 -0
  194. /package/{esm2020 → esm2022}/public_api.mjs +0 -0
  195. /package/{esm2020 → esm2022}/regression/covalent-echarts-regression.mjs +0 -0
  196. /package/{esm2020 → esm2022}/regression/public_api.mjs +0 -0
  197. /package/{esm2020 → esm2022}/sankey/covalent-echarts-sankey.mjs +0 -0
  198. /package/{esm2020 → esm2022}/sankey/public_api.mjs +0 -0
  199. /package/{esm2020 → esm2022}/scatter/covalent-echarts-scatter.mjs +0 -0
  200. /package/{esm2020 → esm2022}/scatter/public_api.mjs +0 -0
  201. /package/{esm2020 → esm2022}/toolbox/covalent-echarts-toolbox.mjs +0 -0
  202. /package/{esm2020 → esm2022}/toolbox/public_api.mjs +0 -0
  203. /package/{esm2020 → esm2022}/tooltip/covalent-echarts-tooltip.mjs +0 -0
  204. /package/{esm2020 → esm2022}/tooltip/public_api.mjs +0 -0
  205. /package/{esm2020 → esm2022}/tree/covalent-echarts-tree.mjs +0 -0
  206. /package/{esm2020 → esm2022}/tree/public_api.mjs +0 -0
  207. /package/{esm2020 → esm2022}/treemap/covalent-echarts-treemap.mjs +0 -0
  208. /package/{esm2020 → esm2022}/treemap/public_api.mjs +0 -0
  209. /package/{esm2020 → esm2022}/wordcloud/covalent-echarts-wordcloud.mjs +0 -0
  210. /package/{esm2020 → esm2022}/wordcloud/public_api.mjs +0 -0
  211. /package/{fesm2015 → fesm2022}/covalent-echarts.mjs +0 -0
  212. /package/{fesm2015 → fesm2022}/covalent-echarts.mjs.map +0 -0
@@ -5,9 +5,42 @@ import * as i1 from '@covalent/echarts/base';
5
5
  import { TdSeriesDirective } from '@covalent/echarts/base';
6
6
 
7
7
  class TdChartSeriesTreemapComponent extends TdSeriesDirective {
8
+ config = {};
9
+ id;
10
+ name;
11
+ data;
12
+ zlevel;
13
+ z;
14
+ left;
15
+ top;
16
+ right;
17
+ bottom;
18
+ width;
19
+ height;
20
+ squareRatio;
21
+ leafDepth;
22
+ drillDownIcon;
23
+ roam;
24
+ nodeClick;
25
+ zoomToNodeRatio;
26
+ levels;
27
+ silent;
28
+ visualDimension;
29
+ visualMin;
30
+ visualMax;
31
+ colorAlpha;
32
+ colorSaturation;
33
+ colorMappingBy;
34
+ visibleMin;
35
+ childrenVisibleMin;
36
+ itemStyle;
37
+ label;
38
+ upperLabel;
39
+ breadcrumb;
40
+ emphasis;
41
+ tooltip;
8
42
  constructor(_optionsService) {
9
43
  super('treemap', _optionsService);
10
- this.config = {};
11
44
  }
12
45
  getConfig() {
13
46
  return {
@@ -42,15 +75,15 @@ class TdChartSeriesTreemapComponent extends TdSeriesDirective {
42
75
  emphasis: this.emphasis,
43
76
  };
44
77
  }
78
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: TdChartSeriesTreemapComponent, deps: [{ token: i1.TdChartOptionsService }], target: i0.ɵɵFactoryTarget.Component });
79
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.7", type: TdChartSeriesTreemapComponent, selector: "td-chart-series[td-treemap]", inputs: { config: "config", id: "id", name: "name", color: "color", data: "data", animation: "animation", animationThreshold: "animationThreshold", animationDuration: "animationDuration", animationEasing: "animationEasing", animationDelay: "animationDelay", animationDurationUpdate: "animationDurationUpdate", animationEasingUpdate: "animationEasingUpdate", animationDelayUpdate: "animationDelayUpdate", tooltip: "tooltip", zlevel: "zlevel", z: "z", left: "left", top: "top", right: "right", bottom: "bottom", width: "width", height: "height", squareRatio: "squareRatio", leafDepth: "leafDepth", drillDownIcon: "drillDownIcon", roam: "roam", nodeClick: "nodeClick", zoomToNodeRatio: "zoomToNodeRatio", levels: "levels", silent: "silent", visualDimension: "visualDimension", visualMin: "visualMin", visualMax: "visualMax", colorAlpha: "colorAlpha", colorSaturation: "colorSaturation", colorMappingBy: "colorMappingBy", visibleMin: "visibleMin", childrenVisibleMin: "childrenVisibleMin", itemStyle: "itemStyle", label: "label", upperLabel: "upperLabel", breadcrumb: "breadcrumb", emphasis: "emphasis" }, providers: [
80
+ {
81
+ provide: TdSeriesDirective,
82
+ useExisting: forwardRef(() => TdChartSeriesTreemapComponent),
83
+ },
84
+ ], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
45
85
  }
46
- TdChartSeriesTreemapComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: TdChartSeriesTreemapComponent, deps: [{ token: i1.TdChartOptionsService }], target: i0.ɵɵFactoryTarget.Component });
47
- TdChartSeriesTreemapComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.5", type: TdChartSeriesTreemapComponent, selector: "td-chart-series[td-treemap]", inputs: { config: "config", id: "id", name: "name", color: "color", data: "data", animation: "animation", animationThreshold: "animationThreshold", animationDuration: "animationDuration", animationEasing: "animationEasing", animationDelay: "animationDelay", animationDurationUpdate: "animationDurationUpdate", animationEasingUpdate: "animationEasingUpdate", animationDelayUpdate: "animationDelayUpdate", tooltip: "tooltip", zlevel: "zlevel", z: "z", left: "left", top: "top", right: "right", bottom: "bottom", width: "width", height: "height", squareRatio: "squareRatio", leafDepth: "leafDepth", drillDownIcon: "drillDownIcon", roam: "roam", nodeClick: "nodeClick", zoomToNodeRatio: "zoomToNodeRatio", levels: "levels", silent: "silent", visualDimension: "visualDimension", visualMin: "visualMin", visualMax: "visualMax", colorAlpha: "colorAlpha", colorSaturation: "colorSaturation", colorMappingBy: "colorMappingBy", visibleMin: "visibleMin", childrenVisibleMin: "childrenVisibleMin", itemStyle: "itemStyle", label: "label", upperLabel: "upperLabel", breadcrumb: "breadcrumb", emphasis: "emphasis" }, providers: [
48
- {
49
- provide: TdSeriesDirective,
50
- useExisting: forwardRef(() => TdChartSeriesTreemapComponent),
51
- },
52
- ], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
53
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: TdChartSeriesTreemapComponent, decorators: [{
86
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: TdChartSeriesTreemapComponent, decorators: [{
54
87
  type: Component,
55
88
  args: [{
56
89
  selector: 'td-chart-series[td-treemap]',
@@ -153,11 +186,11 @@ const TREEMAP_MODULE_COMPONENTS = [
153
186
  TdChartSeriesTreemapComponent,
154
187
  ];
155
188
  class CovalentTreemapEchartsModule {
189
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: CovalentTreemapEchartsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
190
+ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.1.7", ngImport: i0, type: CovalentTreemapEchartsModule, declarations: [TdChartSeriesTreemapComponent], imports: [CommonModule], exports: [TdChartSeriesTreemapComponent] });
191
+ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: CovalentTreemapEchartsModule, imports: [CommonModule] });
156
192
  }
157
- CovalentTreemapEchartsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: CovalentTreemapEchartsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
158
- CovalentTreemapEchartsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.5", ngImport: i0, type: CovalentTreemapEchartsModule, declarations: [TdChartSeriesTreemapComponent], imports: [CommonModule], exports: [TdChartSeriesTreemapComponent] });
159
- CovalentTreemapEchartsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: CovalentTreemapEchartsModule, imports: [CommonModule] });
160
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: CovalentTreemapEchartsModule, decorators: [{
193
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: CovalentTreemapEchartsModule, decorators: [{
161
194
  type: NgModule,
162
195
  args: [{
163
196
  imports: [CommonModule],
@@ -0,0 +1 @@
1
+ {"version":3,"file":"covalent-echarts-treemap.mjs","sources":["../../../../libs/angular-echarts/treemap/src/treemap.component.ts","../../../../libs/angular-echarts/treemap/src/treemap.module.ts","../../../../libs/angular-echarts/treemap/src/covalent-echarts-treemap.ts"],"sourcesContent":["import {\n Component,\n Input,\n ChangeDetectionStrategy,\n forwardRef,\n} from '@angular/core';\n\nimport {\n TdChartOptionsService,\n ITdItemStyle,\n ITdSeriesTooltip,\n ITdLabel,\n ITdSeries,\n TdSeriesDirective,\n ITdEmphasis,\n ITdShadow,\n} from '@covalent/echarts/base';\n\n/**\n * ECHART OPTION DOCS\n * https://ecomfe.github.io/echarts-examples/public/index.html#chart-type-treemap\n *\n */\n\nexport interface ITdTreemapEmphasisLineStyle extends ITdShadow {\n color?: any;\n width?: number;\n curveness?: number;\n}\n\nexport interface ITdTreemapEmphasis extends ITdEmphasis {\n lineStyle: ITdTreemapEmphasisLineStyle;\n}\n\nexport interface ITdTreemapUpperLabel {\n show?: boolean;\n position?: string | any[];\n distance?: string | number;\n rotate?: string | number;\n offset?: any[];\n formatter?: string;\n color?: any;\n fontStyle?: string;\n fontWeight?: string;\n fontFamily?: string;\n fontSize?: string | number;\n align?: string;\n verticalAlign?: string;\n lineHeight?: string | number;\n backgroundColor?: any;\n borderColor?: string;\n borderWidth?: string | number;\n borderRadius?: string | number;\n padding?: number | any[];\n shadowColor?: string;\n shadowBlur?: string | number;\n shadowOffsetX?: string | number;\n shadowOffsetY?: string | number;\n width?: string | number;\n height?: string | number;\n textBorderColor?: string;\n textBorderWidth?: string | number;\n textShadowColor?: string;\n textShadowBlur?: string | number;\n textShadowOffsetX?: string | number;\n textShadowOffsetY?: string | number;\n rich?: any;\n ellipsis?: any;\n}\n\nexport interface ITdTreemapBreadcrumb {\n show?: boolean;\n left?: string | number;\n top?: string | number;\n right?: string | number;\n bottom?: string | number;\n height?: string | number;\n emptyItemWidth?: string | number;\n itemStyle?: ITdItemStyle;\n emphasis?: ITdTreemapEmphasis;\n}\n\ninterface ITdTreemapSeries extends ITdSeries {\n zlevel?: number;\n z?: number;\n left?: string | number;\n top?: string | number;\n right?: string | number;\n bottom?: string | number;\n width?: string | number;\n height?: string | number;\n squareRatio?: string | number;\n leafDepth?: string | number;\n drillDownIcon?: string;\n roam?: boolean | string;\n nodeClick?: boolean | string;\n zoomToNodeRatio?: string | number;\n levels?: any[];\n silent?: boolean;\n visualDimension?: string | number;\n visualMin?: string | number;\n visualMax?: string | number;\n colorAlpha?: any[];\n colorSaturation?: string | number;\n colorMappingBy?: string;\n visibleMin?: string | number;\n childrenVisibleMin?: string | number;\n itemStyle?: ITdItemStyle;\n label?: ITdLabel;\n upperLabel?: ITdTreemapUpperLabel;\n breadcrumb?: ITdTreemapBreadcrumb;\n emphasis?: ITdTreemapEmphasis;\n data?: any[];\n}\n\n@Component({\n selector: 'td-chart-series[td-treemap]',\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(() => TdChartSeriesTreemapComponent),\n },\n ],\n})\nexport class TdChartSeriesTreemapComponent\n extends TdSeriesDirective\n implements ITdTreemapSeries\n{\n @Input() override config?: any = {};\n @Input() declare id?: string;\n @Input() declare name?: string;\n @Input() declare data?: any;\n @Input() zlevel?: number;\n @Input() z?: number;\n @Input() left?: string | number;\n @Input() top?: string | number;\n @Input() right?: string | number;\n @Input() bottom?: string | number;\n @Input() width?: string | number;\n @Input() height?: string | number;\n @Input() squareRatio?: string | number;\n @Input() leafDepth?: string | number;\n @Input() drillDownIcon?: string;\n @Input() roam?: boolean | string;\n @Input() nodeClick?: boolean | string;\n @Input() zoomToNodeRatio?: string | number;\n @Input() levels?: any[];\n @Input() silent?: boolean;\n @Input() visualDimension?: string | number;\n @Input() visualMin?: string | number;\n @Input() visualMax?: string | number;\n @Input() colorAlpha?: any[];\n @Input() colorSaturation?: string | number;\n @Input() colorMappingBy?: string;\n @Input() visibleMin?: string | number;\n @Input() childrenVisibleMin?: string | number;\n @Input() itemStyle?: ITdItemStyle;\n @Input() label?: ITdLabel;\n @Input() upperLabel?: ITdTreemapUpperLabel;\n @Input() breadcrumb?: ITdTreemapBreadcrumb;\n @Input() emphasis?: ITdTreemapEmphasis;\n @Input() declare tooltip: ITdSeriesTooltip;\n\n constructor(_optionsService: TdChartOptionsService) {\n super('treemap', _optionsService);\n }\n\n getConfig(): any {\n return {\n zlevel: this.zlevel,\n z: this.z,\n left: this.left,\n top: this.top,\n right: this.right,\n bottom: this.bottom,\n width: this.width,\n height: this.height,\n squareRatio: this.squareRatio,\n leafDepth: this.leafDepth,\n drillDownIcon: this.drillDownIcon,\n roam: this.roam,\n nodeClick: this.nodeClick,\n zoomToNodeRatio: this.zoomToNodeRatio,\n levels: this.levels,\n silent: this.silent,\n visualDimension: this.visualDimension,\n visualMin: this.visualMin,\n visualMax: this.visualMax,\n colorAlpha: this.colorAlpha,\n colorSaturation: this.colorSaturation,\n colorMappingBy: this.colorMappingBy,\n visibleMin: this.visibleMin,\n childrenVisibleMin: this.childrenVisibleMin,\n itemStyle: this.itemStyle,\n label: this.label,\n upperLabel: this.upperLabel,\n breadcrumb: this.breadcrumb,\n emphasis: this.emphasis,\n };\n }\n}\n","import { NgModule, Type } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { TdChartSeriesTreemapComponent } from './treemap.component';\n\nexport const TREEMAP_MODULE_COMPONENTS: Type<any>[] = [\n TdChartSeriesTreemapComponent,\n];\n\n@NgModule({\n imports: [CommonModule],\n declarations: [TREEMAP_MODULE_COMPONENTS],\n exports: [TREEMAP_MODULE_COMPONENTS],\n})\nexport class CovalentTreemapEchartsModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":[],"mappings":"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"}
@@ -5,6 +5,20 @@ import * as i1 from '@covalent/echarts/base';
5
5
  import { TdSeriesDirective } from '@covalent/echarts/base';
6
6
 
7
7
  class TdChartSeriesWordcloudComponent extends TdSeriesDirective {
8
+ data;
9
+ shape;
10
+ left;
11
+ top;
12
+ width;
13
+ height;
14
+ right;
15
+ bottom;
16
+ sizeRange;
17
+ rotationRange;
18
+ rotationStep;
19
+ gridSize;
20
+ drawOutOfBound;
21
+ textStyle;
8
22
  constructor(_optionsService) {
9
23
  super('wordCloud', _optionsService);
10
24
  }
@@ -25,15 +39,15 @@ class TdChartSeriesWordcloudComponent extends TdSeriesDirective {
25
39
  textStyle: this.textStyle,
26
40
  };
27
41
  }
42
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: TdChartSeriesWordcloudComponent, deps: [{ token: i1.TdChartOptionsService }], target: i0.ɵɵFactoryTarget.Component });
43
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.7", 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: [
44
+ {
45
+ provide: TdSeriesDirective,
46
+ useExisting: forwardRef(() => TdChartSeriesWordcloudComponent),
47
+ },
48
+ ], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
28
49
  }
29
- TdChartSeriesWordcloudComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: TdChartSeriesWordcloudComponent, deps: [{ token: i1.TdChartOptionsService }], target: i0.ɵɵFactoryTarget.Component });
30
- TdChartSeriesWordcloudComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.5", 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: [
31
- {
32
- provide: TdSeriesDirective,
33
- useExisting: forwardRef(() => TdChartSeriesWordcloudComponent),
34
- },
35
- ], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
36
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: TdChartSeriesWordcloudComponent, decorators: [{
50
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: TdChartSeriesWordcloudComponent, decorators: [{
37
51
  type: Component,
38
52
  args: [{
39
53
  selector: 'td-chart-series[td-wordCloud]',
@@ -96,11 +110,11 @@ const WORDCLOUD_MODULE_COMPONENTS = [
96
110
  TdChartSeriesWordcloudComponent,
97
111
  ];
98
112
  class CovalentWordcloudEchartsModule {
113
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: CovalentWordcloudEchartsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
114
+ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.1.7", ngImport: i0, type: CovalentWordcloudEchartsModule, declarations: [TdChartSeriesWordcloudComponent], imports: [CommonModule], exports: [TdChartSeriesWordcloudComponent] });
115
+ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: CovalentWordcloudEchartsModule, imports: [CommonModule] });
99
116
  }
100
- CovalentWordcloudEchartsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: CovalentWordcloudEchartsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
101
- CovalentWordcloudEchartsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.5", ngImport: i0, type: CovalentWordcloudEchartsModule, declarations: [TdChartSeriesWordcloudComponent], imports: [CommonModule], exports: [TdChartSeriesWordcloudComponent] });
102
- CovalentWordcloudEchartsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: CovalentWordcloudEchartsModule, imports: [CommonModule] });
103
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: CovalentWordcloudEchartsModule, decorators: [{
117
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: CovalentWordcloudEchartsModule, decorators: [{
104
118
  type: NgModule,
105
119
  args: [{
106
120
  imports: [CommonModule],
@@ -0,0 +1 @@
1
+ {"version":3,"file":"covalent-echarts-wordcloud.mjs","sources":["../../../../libs/angular-echarts/wordcloud/src/wordcloud.component.ts","../../../../libs/angular-echarts/wordcloud/src/wordcloud.module.ts","../../../../libs/angular-echarts/wordcloud/src/covalent-echarts-wordcloud.ts"],"sourcesContent":["import {\n Component,\n Input,\n ChangeDetectionStrategy,\n forwardRef,\n} from '@angular/core';\n\nimport {\n TdChartOptionsService,\n ITdSeries,\n TdSeriesDirective,\n} from '@covalent/echarts/base';\n\nexport type TdWordcloudShape =\n | 'circle'\n | 'cardioid'\n | 'diamond'\n | 'triangle-forward'\n | 'triangle'\n | 'pentagon'\n | 'star';\n\nexport interface ITdWordcloudTextStyle {\n normal?: {\n fontFamily?: string;\n fontWeight?: string;\n color?: string | ((x: any) => string);\n };\n emphasis?: {\n shadowBlur?: number;\n shadowColor?: string;\n };\n}\n\nexport interface ITdWordCloudData {\n name: string;\n value: number;\n textStyle?: ITdWordcloudTextStyle;\n}\n\nexport interface ITdWordcloudSeries extends ITdSeries {\n data?: ITdWordCloudData[];\n shape?: TdWordcloudShape;\n left?: string | number;\n top?: string | number;\n width?: string | number;\n height?: string | number;\n right?: string | number;\n bottom?: string | number;\n sizeRange?: number[];\n rotationRange?: number[];\n rotationStep?: number;\n gridSize?: number;\n drawOutOfBound?: boolean;\n textStyle?: ITdWordcloudTextStyle;\n}\n\n@Component({\n selector: 'td-chart-series[td-wordCloud]',\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(() => TdChartSeriesWordcloudComponent),\n },\n ],\n})\nexport class TdChartSeriesWordcloudComponent\n extends TdSeriesDirective\n implements ITdWordcloudSeries\n{\n @Input() declare data?: ITdWordCloudData[];\n @Input() shape?: TdWordcloudShape;\n @Input() left?: string | number;\n @Input() top?: string | number;\n @Input() width?: string | number;\n @Input() height?: string | number;\n @Input() right?: string | number;\n @Input() bottom?: string | number;\n @Input() sizeRange?: number[];\n @Input() rotationRange?: number[];\n @Input() rotationStep?: number;\n @Input() gridSize?: number;\n @Input() drawOutOfBound?: boolean;\n @Input() textStyle?: ITdWordcloudTextStyle;\n\n constructor(_optionsService: TdChartOptionsService) {\n super('wordCloud', _optionsService);\n }\n\n getConfig(): any {\n return {\n shape: this.shape,\n left: this.left,\n top: this.top,\n width: this.width,\n height: this.height,\n right: this.right,\n bottom: this.bottom,\n sizeRange: this.sizeRange,\n rotationRange: this.rotationRange,\n rotationStep: this.rotationStep,\n gridSize: this.gridSize,\n drawOutOfBound: this.drawOutOfBound,\n textStyle: this.textStyle,\n };\n }\n}\n","import { NgModule, Type } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { TdChartSeriesWordcloudComponent } from './wordcloud.component';\n\nexport const WORDCLOUD_MODULE_COMPONENTS: Type<any>[] = [\n TdChartSeriesWordcloudComponent,\n];\n\n@NgModule({\n imports: [CommonModule],\n declarations: [WORDCLOUD_MODULE_COMPONENTS],\n exports: [WORDCLOUD_MODULE_COMPONENTS],\n})\nexport class CovalentWordcloudEchartsModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":[],"mappings":"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"}
@@ -125,5 +125,5 @@ export declare class TdChartSeriesGraphComponent extends TdSeriesDirective imple
125
125
  constructor(_optionsService: TdChartOptionsService);
126
126
  getConfig(): any;
127
127
  static ɵfac: i0.ɵɵFactoryDeclaration<TdChartSeriesGraphComponent, never>;
128
- static ɵcmp: i0.ɵɵComponentDeclaration<TdChartSeriesGraphComponent, "td-chart-series[td-graph]", never, { "config": "config"; "id": "id"; "name": "name"; "color": "color"; "data": "data"; "animation": "animation"; "animationThreshold": "animationThreshold"; "animationDuration": "animationDuration"; "animationEasing": "animationEasing"; "animationDelay": "animationDelay"; "animationDurationUpdate": "animationDurationUpdate"; "animationEasingUpdate": "animationEasingUpdate"; "animationDelayUpdate": "animationDelayUpdate"; "tooltip": "tooltip"; "legendHoverLink": "legendHoverLink"; "coordinateSystem": "coordinateSystem"; "xAxisIndex": "xAxisIndex"; "yAxisIndex": "yAxisIndex"; "polarIndex": "polarIndex"; "calendarIndex": "calendarIndex"; "geoIndex": "geoIndex"; "hoverAnimation": "hoverAnimation"; "circular": "circular"; "force": "force"; "layout": "layout"; "nodeScaleRatio": "nodeScaleRatio"; "draggable": "draggable"; "symbol": "symbol"; "symbolSize": "symbolSize"; "symbolRotate": "symbolRotate"; "symbolKeepAspect": "symbolKeepAspect"; "symbolOffset": "symbolOffset"; "focusNodeAdjacency": "focusNodeAdjacency"; "edgeSymbol": "edgeSymbol"; "edgeSymbolSize": "edgeSymbolSize"; "cursor": "cursor"; "roam": "roam"; "initialTreeDepth": "initialTreeDepth"; "itemStyle": "itemStyle"; "lineStyle": "lineStyle"; "label": "label"; "edgeLabel": "edgeLabel"; "emphasis": "emphasis"; "categories": "categories"; "nodes": "nodes"; "links": "links"; "edges": "edges"; "markPoint": "markPoint"; "markLine": "markLine"; "markArea": "markArea"; "zlevel": "zlevel"; "z": "z"; "silent": "silent"; "left": "left"; "top": "top"; "right": "right"; "bottom": "bottom"; "width": "width"; "height": "height"; }, {}, never, never, false, never>;
128
+ static ɵcmp: i0.ɵɵComponentDeclaration<TdChartSeriesGraphComponent, "td-chart-series[td-graph]", never, { "config": { "alias": "config"; "required": false; }; "id": { "alias": "id"; "required": false; }; "name": { "alias": "name"; "required": false; }; "color": { "alias": "color"; "required": false; }; "data": { "alias": "data"; "required": false; }; "animation": { "alias": "animation"; "required": false; }; "animationThreshold": { "alias": "animationThreshold"; "required": false; }; "animationDuration": { "alias": "animationDuration"; "required": false; }; "animationEasing": { "alias": "animationEasing"; "required": false; }; "animationDelay": { "alias": "animationDelay"; "required": false; }; "animationDurationUpdate": { "alias": "animationDurationUpdate"; "required": false; }; "animationEasingUpdate": { "alias": "animationEasingUpdate"; "required": false; }; "animationDelayUpdate": { "alias": "animationDelayUpdate"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "legendHoverLink": { "alias": "legendHoverLink"; "required": false; }; "coordinateSystem": { "alias": "coordinateSystem"; "required": false; }; "xAxisIndex": { "alias": "xAxisIndex"; "required": false; }; "yAxisIndex": { "alias": "yAxisIndex"; "required": false; }; "polarIndex": { "alias": "polarIndex"; "required": false; }; "calendarIndex": { "alias": "calendarIndex"; "required": false; }; "geoIndex": { "alias": "geoIndex"; "required": false; }; "hoverAnimation": { "alias": "hoverAnimation"; "required": false; }; "circular": { "alias": "circular"; "required": false; }; "force": { "alias": "force"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; "nodeScaleRatio": { "alias": "nodeScaleRatio"; "required": false; }; "draggable": { "alias": "draggable"; "required": false; }; "symbol": { "alias": "symbol"; "required": false; }; "symbolSize": { "alias": "symbolSize"; "required": false; }; "symbolRotate": { "alias": "symbolRotate"; "required": false; }; "symbolKeepAspect": { "alias": "symbolKeepAspect"; "required": false; }; "symbolOffset": { "alias": "symbolOffset"; "required": false; }; "focusNodeAdjacency": { "alias": "focusNodeAdjacency"; "required": false; }; "edgeSymbol": { "alias": "edgeSymbol"; "required": false; }; "edgeSymbolSize": { "alias": "edgeSymbolSize"; "required": false; }; "cursor": { "alias": "cursor"; "required": false; }; "roam": { "alias": "roam"; "required": false; }; "initialTreeDepth": { "alias": "initialTreeDepth"; "required": false; }; "itemStyle": { "alias": "itemStyle"; "required": false; }; "lineStyle": { "alias": "lineStyle"; "required": false; }; "label": { "alias": "label"; "required": false; }; "edgeLabel": { "alias": "edgeLabel"; "required": false; }; "emphasis": { "alias": "emphasis"; "required": false; }; "categories": { "alias": "categories"; "required": false; }; "nodes": { "alias": "nodes"; "required": false; }; "links": { "alias": "links"; "required": false; }; "edges": { "alias": "edges"; "required": false; }; "markPoint": { "alias": "markPoint"; "required": false; }; "markLine": { "alias": "markLine"; "required": false; }; "markArea": { "alias": "markArea"; "required": false; }; "zlevel": { "alias": "zlevel"; "required": false; }; "z": { "alias": "z"; "required": false; }; "silent": { "alias": "silent"; "required": false; }; "left": { "alias": "left"; "required": false; }; "top": { "alias": "top"; "required": false; }; "right": { "alias": "right"; "required": false; }; "bottom": { "alias": "bottom"; "required": false; }; "width": { "alias": "width"; "required": false; }; "height": { "alias": "height"; "required": false; }; }, {}, never, never, false, never>;
129
129
  }
@@ -15,5 +15,5 @@ export declare class TdChartSeriesHistogramComponent extends TdChartSeriesBarCom
15
15
  getConfig(): any;
16
16
  private setOptions;
17
17
  static ɵfac: i0.ɵɵFactoryDeclaration<TdChartSeriesHistogramComponent, never>;
18
- static ɵcmp: i0.ɵɵComponentDeclaration<TdChartSeriesHistogramComponent, "td-chart-series[td-histogram]", never, { "config": "config"; "id": "id"; "name": "name"; "color": "color"; "data": "data"; "animation": "animation"; "animationThreshold": "animationThreshold"; "animationDuration": "animationDuration"; "animationEasing": "animationEasing"; "animationDelay": "animationDelay"; "animationDurationUpdate": "animationDurationUpdate"; "animationEasingUpdate": "animationEasingUpdate"; "animationDelayUpdate": "animationDelayUpdate"; "tooltip": "tooltip"; "source": "source"; "method": "method"; }, {}, never, never, false, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<TdChartSeriesHistogramComponent, "td-chart-series[td-histogram]", never, { "config": { "alias": "config"; "required": false; }; "id": { "alias": "id"; "required": false; }; "name": { "alias": "name"; "required": false; }; "color": { "alias": "color"; "required": false; }; "data": { "alias": "data"; "required": false; }; "animation": { "alias": "animation"; "required": false; }; "animationThreshold": { "alias": "animationThreshold"; "required": false; }; "animationDuration": { "alias": "animationDuration"; "required": false; }; "animationEasing": { "alias": "animationEasing"; "required": false; }; "animationDelay": { "alias": "animationDelay"; "required": false; }; "animationDurationUpdate": { "alias": "animationDurationUpdate"; "required": false; }; "animationEasingUpdate": { "alias": "animationEasingUpdate"; "required": false; }; "animationDelayUpdate": { "alias": "animationDelayUpdate"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "source": { "alias": "source"; "required": false; }; "method": { "alias": "method"; "required": false; }; }, {}, never, never, false, never>;
19
19
  }
@@ -82,5 +82,5 @@ export declare class TdChartSeriesLineComponent extends TdSeriesDirective implem
82
82
  constructor(_optionsService: TdChartOptionsService);
83
83
  getConfig(): any;
84
84
  static ɵfac: i0.ɵɵFactoryDeclaration<TdChartSeriesLineComponent, never>;
85
- static ɵcmp: i0.ɵɵComponentDeclaration<TdChartSeriesLineComponent, "td-chart-series[td-line]", never, { "config": "config"; "id": "id"; "name": "name"; "color": "color"; "data": "data"; "animation": "animation"; "animationThreshold": "animationThreshold"; "animationDuration": "animationDuration"; "animationEasing": "animationEasing"; "animationDelay": "animationDelay"; "animationDurationUpdate": "animationDurationUpdate"; "animationEasingUpdate": "animationEasingUpdate"; "animationDelayUpdate": "animationDelayUpdate"; "tooltip": "tooltip"; "coordinateSystem": "coordinateSystem"; "xAxisIndex": "xAxisIndex"; "yAxisIndex": "yAxisIndex"; "polarIndex": "polarIndex"; "symbol": "symbol"; "symbolSize": "symbolSize"; "symbolRotate": "symbolRotate"; "symbolKeepAspect": "symbolKeepAspect"; "symbolOffset": "symbolOffset"; "showSymbol": "showSymbol"; "showAllSymbol": "showAllSymbol"; "hoverAnimation": "hoverAnimation"; "legendHoverLink": "legendHoverLink"; "stack": "stack"; "cursor": "cursor"; "connectNulls": "connectNulls"; "clipOverflow": "clipOverflow"; "step": "step"; "label": "label"; "itemStyle": "itemStyle"; "lineStyle": "lineStyle"; "areaStyle": "areaStyle"; "emphasis": "emphasis"; "smooth": "smooth"; "smoothMonotone": "smoothMonotone"; "sampling": "sampling"; "dimensions": "dimensions"; "encode": "encode"; "seriesLayoutBy": "seriesLayoutBy"; "datasetIndex": "datasetIndex"; "markPoint": "markPoint"; "markLine": "markLine"; "markArea": "markArea"; "zlevel": "zlevel"; "z": "z"; "silent": "silent"; }, {}, never, never, false, never>;
85
+ static ɵcmp: i0.ɵɵComponentDeclaration<TdChartSeriesLineComponent, "td-chart-series[td-line]", never, { "config": { "alias": "config"; "required": false; }; "id": { "alias": "id"; "required": false; }; "name": { "alias": "name"; "required": false; }; "color": { "alias": "color"; "required": false; }; "data": { "alias": "data"; "required": false; }; "animation": { "alias": "animation"; "required": false; }; "animationThreshold": { "alias": "animationThreshold"; "required": false; }; "animationDuration": { "alias": "animationDuration"; "required": false; }; "animationEasing": { "alias": "animationEasing"; "required": false; }; "animationDelay": { "alias": "animationDelay"; "required": false; }; "animationDurationUpdate": { "alias": "animationDurationUpdate"; "required": false; }; "animationEasingUpdate": { "alias": "animationEasingUpdate"; "required": false; }; "animationDelayUpdate": { "alias": "animationDelayUpdate"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "coordinateSystem": { "alias": "coordinateSystem"; "required": false; }; "xAxisIndex": { "alias": "xAxisIndex"; "required": false; }; "yAxisIndex": { "alias": "yAxisIndex"; "required": false; }; "polarIndex": { "alias": "polarIndex"; "required": false; }; "symbol": { "alias": "symbol"; "required": false; }; "symbolSize": { "alias": "symbolSize"; "required": false; }; "symbolRotate": { "alias": "symbolRotate"; "required": false; }; "symbolKeepAspect": { "alias": "symbolKeepAspect"; "required": false; }; "symbolOffset": { "alias": "symbolOffset"; "required": false; }; "showSymbol": { "alias": "showSymbol"; "required": false; }; "showAllSymbol": { "alias": "showAllSymbol"; "required": false; }; "hoverAnimation": { "alias": "hoverAnimation"; "required": false; }; "legendHoverLink": { "alias": "legendHoverLink"; "required": false; }; "stack": { "alias": "stack"; "required": false; }; "cursor": { "alias": "cursor"; "required": false; }; "connectNulls": { "alias": "connectNulls"; "required": false; }; "clipOverflow": { "alias": "clipOverflow"; "required": false; }; "step": { "alias": "step"; "required": false; }; "label": { "alias": "label"; "required": false; }; "itemStyle": { "alias": "itemStyle"; "required": false; }; "lineStyle": { "alias": "lineStyle"; "required": false; }; "areaStyle": { "alias": "areaStyle"; "required": false; }; "emphasis": { "alias": "emphasis"; "required": false; }; "smooth": { "alias": "smooth"; "required": false; }; "smoothMonotone": { "alias": "smoothMonotone"; "required": false; }; "sampling": { "alias": "sampling"; "required": false; }; "dimensions": { "alias": "dimensions"; "required": false; }; "encode": { "alias": "encode"; "required": false; }; "seriesLayoutBy": { "alias": "seriesLayoutBy"; "required": false; }; "datasetIndex": { "alias": "datasetIndex"; "required": false; }; "markPoint": { "alias": "markPoint"; "required": false; }; "markLine": { "alias": "markLine"; "required": false; }; "markArea": { "alias": "markArea"; "required": false; }; "zlevel": { "alias": "zlevel"; "required": false; }; "z": { "alias": "z"; "required": false; }; "silent": { "alias": "silent"; "required": false; }; }, {}, never, never, false, never>;
86
86
  }
@@ -71,5 +71,5 @@ export declare class TdChartSeriesMapComponent extends TdSeriesDirective impleme
71
71
  constructor(_optionsService: TdChartOptionsService);
72
72
  getConfig(): any;
73
73
  static ɵfac: i0.ɵɵFactoryDeclaration<TdChartSeriesMapComponent, never>;
74
- static ɵcmp: i0.ɵɵComponentDeclaration<TdChartSeriesMapComponent, "td-chart-series[td-map]", never, { "config": "config"; "id": "id"; "name": "name"; "color": "color"; "data": "data"; "animation": "animation"; "animationThreshold": "animationThreshold"; "animationDuration": "animationDuration"; "animationEasing": "animationEasing"; "animationDelay": "animationDelay"; "animationDurationUpdate": "animationDurationUpdate"; "animationEasingUpdate": "animationEasingUpdate"; "animationDelayUpdate": "animationDelayUpdate"; "tooltip": "tooltip"; "map": "map"; "roam": "roam"; "center": "center"; "aspectScale": "aspectScale"; "boudingCoords": "boudingCoords"; "zoom": "zoom"; "scaleLimit": "scaleLimit"; "nameMap": "nameMap"; "selectedMode": "selectedMode"; "label": "label"; "itemStyle": "itemStyle"; "zLevel": "zLevel"; "z": "z"; "left": "left"; "top": "top"; "right": "right"; "bottom": "bottom"; "layoutCenter": "layoutCenter"; "layoutSize": "layoutSize"; "geoIndex": "geoIndex"; "mapValueCalculation": "mapValueCalculation"; "showLegendSymbol": "showLegendSymbol"; "seriesLayoutBy": "seriesLayoutBy"; "markPoint": "markPoint"; "markLine": "markLine"; "markArea": "markArea"; "silent": "silent"; }, {}, never, never, false, never>;
74
+ static ɵcmp: i0.ɵɵComponentDeclaration<TdChartSeriesMapComponent, "td-chart-series[td-map]", never, { "config": { "alias": "config"; "required": false; }; "id": { "alias": "id"; "required": false; }; "name": { "alias": "name"; "required": false; }; "color": { "alias": "color"; "required": false; }; "data": { "alias": "data"; "required": false; }; "animation": { "alias": "animation"; "required": false; }; "animationThreshold": { "alias": "animationThreshold"; "required": false; }; "animationDuration": { "alias": "animationDuration"; "required": false; }; "animationEasing": { "alias": "animationEasing"; "required": false; }; "animationDelay": { "alias": "animationDelay"; "required": false; }; "animationDurationUpdate": { "alias": "animationDurationUpdate"; "required": false; }; "animationEasingUpdate": { "alias": "animationEasingUpdate"; "required": false; }; "animationDelayUpdate": { "alias": "animationDelayUpdate"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "map": { "alias": "map"; "required": false; }; "roam": { "alias": "roam"; "required": false; }; "center": { "alias": "center"; "required": false; }; "aspectScale": { "alias": "aspectScale"; "required": false; }; "boudingCoords": { "alias": "boudingCoords"; "required": false; }; "zoom": { "alias": "zoom"; "required": false; }; "scaleLimit": { "alias": "scaleLimit"; "required": false; }; "nameMap": { "alias": "nameMap"; "required": false; }; "selectedMode": { "alias": "selectedMode"; "required": false; }; "label": { "alias": "label"; "required": false; }; "itemStyle": { "alias": "itemStyle"; "required": false; }; "zLevel": { "alias": "zLevel"; "required": false; }; "z": { "alias": "z"; "required": false; }; "left": { "alias": "left"; "required": false; }; "top": { "alias": "top"; "required": false; }; "right": { "alias": "right"; "required": false; }; "bottom": { "alias": "bottom"; "required": false; }; "layoutCenter": { "alias": "layoutCenter"; "required": false; }; "layoutSize": { "alias": "layoutSize"; "required": false; }; "geoIndex": { "alias": "geoIndex"; "required": false; }; "mapValueCalculation": { "alias": "mapValueCalculation"; "required": false; }; "showLegendSymbol": { "alias": "showLegendSymbol"; "required": false; }; "seriesLayoutBy": { "alias": "seriesLayoutBy"; "required": false; }; "markPoint": { "alias": "markPoint"; "required": false; }; "markLine": { "alias": "markLine"; "required": false; }; "markArea": { "alias": "markArea"; "required": false; }; "silent": { "alias": "silent"; "required": false; }; }, {}, never, never, false, never>;
75
75
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@covalent/echarts",
3
- "version": "6.3.0",
3
+ "version": "7.0.0",
4
4
  "description": "Teradata UI Platform Echarts Module",
5
5
  "keywords": [
6
6
  "angular",
@@ -19,21 +19,16 @@
19
19
  "license": "MIT",
20
20
  "author": "Teradata UX",
21
21
  "peerDependencies": {
22
- "@angular/common": "^15.2.5",
23
- "@angular/core": "^15.2.5",
22
+ "@angular/common": "16.x.x",
23
+ "@angular/core": "16.x.x",
24
24
  "echarts": "^5.3.0",
25
25
  "echarts-stat": "^5.3.0-STAT",
26
- "echarts-wordcloud": "^2.0.0",
27
- "rxjs": "7.8.0"
26
+ "echarts-wordcloud": "^2.0.0"
28
27
  },
29
28
  "dependencies": {
30
29
  "tslib": "^2.0.0"
31
30
  },
32
- "module": "fesm2015/covalent-echarts.mjs",
33
- "es2020": "fesm2020/covalent-echarts.mjs",
34
- "esm2020": "esm2020/covalent-echarts.mjs",
35
- "fesm2020": "fesm2020/covalent-echarts.mjs",
36
- "fesm2015": "fesm2015/covalent-echarts.mjs",
31
+ "module": "fesm2022/covalent-echarts.mjs",
37
32
  "typings": "index.d.ts",
38
33
  "exports": {
39
34
  "./package.json": {
@@ -41,140 +36,106 @@
41
36
  },
42
37
  ".": {
43
38
  "types": "./index.d.ts",
44
- "esm2020": "./esm2020/covalent-echarts.mjs",
45
- "es2020": "./fesm2020/covalent-echarts.mjs",
46
- "es2015": "./fesm2015/covalent-echarts.mjs",
47
- "node": "./fesm2015/covalent-echarts.mjs",
48
- "default": "./fesm2020/covalent-echarts.mjs"
39
+ "esm2022": "./esm2022/covalent-echarts.mjs",
40
+ "esm": "./esm2022/covalent-echarts.mjs",
41
+ "default": "./fesm2022/covalent-echarts.mjs"
49
42
  },
50
43
  "./bar": {
51
44
  "types": "./bar/index.d.ts",
52
- "esm2020": "./esm2020/bar/covalent-echarts-bar.mjs",
53
- "es2020": "./fesm2020/covalent-echarts-bar.mjs",
54
- "es2015": "./fesm2015/covalent-echarts-bar.mjs",
55
- "node": "./fesm2015/covalent-echarts-bar.mjs",
56
- "default": "./fesm2020/covalent-echarts-bar.mjs"
45
+ "esm2022": "./esm2022/bar/covalent-echarts-bar.mjs",
46
+ "esm": "./esm2022/bar/covalent-echarts-bar.mjs",
47
+ "default": "./fesm2022/covalent-echarts-bar.mjs"
57
48
  },
58
49
  "./base": {
59
50
  "types": "./base/index.d.ts",
60
- "esm2020": "./esm2020/base/covalent-echarts-base.mjs",
61
- "es2020": "./fesm2020/covalent-echarts-base.mjs",
62
- "es2015": "./fesm2015/covalent-echarts-base.mjs",
63
- "node": "./fesm2015/covalent-echarts-base.mjs",
64
- "default": "./fesm2020/covalent-echarts-base.mjs"
51
+ "esm2022": "./esm2022/base/covalent-echarts-base.mjs",
52
+ "esm": "./esm2022/base/covalent-echarts-base.mjs",
53
+ "default": "./fesm2022/covalent-echarts-base.mjs"
65
54
  },
66
55
  "./clustering": {
67
56
  "types": "./clustering/index.d.ts",
68
- "esm2020": "./esm2020/clustering/covalent-echarts-clustering.mjs",
69
- "es2020": "./fesm2020/covalent-echarts-clustering.mjs",
70
- "es2015": "./fesm2015/covalent-echarts-clustering.mjs",
71
- "node": "./fesm2015/covalent-echarts-clustering.mjs",
72
- "default": "./fesm2020/covalent-echarts-clustering.mjs"
57
+ "esm2022": "./esm2022/clustering/covalent-echarts-clustering.mjs",
58
+ "esm": "./esm2022/clustering/covalent-echarts-clustering.mjs",
59
+ "default": "./fesm2022/covalent-echarts-clustering.mjs"
73
60
  },
74
61
  "./graph": {
75
62
  "types": "./graph/index.d.ts",
76
- "esm2020": "./esm2020/graph/covalent-echarts-graph.mjs",
77
- "es2020": "./fesm2020/covalent-echarts-graph.mjs",
78
- "es2015": "./fesm2015/covalent-echarts-graph.mjs",
79
- "node": "./fesm2015/covalent-echarts-graph.mjs",
80
- "default": "./fesm2020/covalent-echarts-graph.mjs"
63
+ "esm2022": "./esm2022/graph/covalent-echarts-graph.mjs",
64
+ "esm": "./esm2022/graph/covalent-echarts-graph.mjs",
65
+ "default": "./fesm2022/covalent-echarts-graph.mjs"
81
66
  },
82
67
  "./histogram": {
83
68
  "types": "./histogram/index.d.ts",
84
- "esm2020": "./esm2020/histogram/covalent-echarts-histogram.mjs",
85
- "es2020": "./fesm2020/covalent-echarts-histogram.mjs",
86
- "es2015": "./fesm2015/covalent-echarts-histogram.mjs",
87
- "node": "./fesm2015/covalent-echarts-histogram.mjs",
88
- "default": "./fesm2020/covalent-echarts-histogram.mjs"
69
+ "esm2022": "./esm2022/histogram/covalent-echarts-histogram.mjs",
70
+ "esm": "./esm2022/histogram/covalent-echarts-histogram.mjs",
71
+ "default": "./fesm2022/covalent-echarts-histogram.mjs"
89
72
  },
90
73
  "./line": {
91
74
  "types": "./line/index.d.ts",
92
- "esm2020": "./esm2020/line/covalent-echarts-line.mjs",
93
- "es2020": "./fesm2020/covalent-echarts-line.mjs",
94
- "es2015": "./fesm2015/covalent-echarts-line.mjs",
95
- "node": "./fesm2015/covalent-echarts-line.mjs",
96
- "default": "./fesm2020/covalent-echarts-line.mjs"
75
+ "esm2022": "./esm2022/line/covalent-echarts-line.mjs",
76
+ "esm": "./esm2022/line/covalent-echarts-line.mjs",
77
+ "default": "./fesm2022/covalent-echarts-line.mjs"
97
78
  },
98
79
  "./map": {
99
80
  "types": "./map/index.d.ts",
100
- "esm2020": "./esm2020/map/covalent-echarts-map.mjs",
101
- "es2020": "./fesm2020/covalent-echarts-map.mjs",
102
- "es2015": "./fesm2015/covalent-echarts-map.mjs",
103
- "node": "./fesm2015/covalent-echarts-map.mjs",
104
- "default": "./fesm2020/covalent-echarts-map.mjs"
81
+ "esm2022": "./esm2022/map/covalent-echarts-map.mjs",
82
+ "esm": "./esm2022/map/covalent-echarts-map.mjs",
83
+ "default": "./fesm2022/covalent-echarts-map.mjs"
105
84
  },
106
85
  "./pie": {
107
86
  "types": "./pie/index.d.ts",
108
- "esm2020": "./esm2020/pie/covalent-echarts-pie.mjs",
109
- "es2020": "./fesm2020/covalent-echarts-pie.mjs",
110
- "es2015": "./fesm2015/covalent-echarts-pie.mjs",
111
- "node": "./fesm2015/covalent-echarts-pie.mjs",
112
- "default": "./fesm2020/covalent-echarts-pie.mjs"
87
+ "esm2022": "./esm2022/pie/covalent-echarts-pie.mjs",
88
+ "esm": "./esm2022/pie/covalent-echarts-pie.mjs",
89
+ "default": "./fesm2022/covalent-echarts-pie.mjs"
113
90
  },
114
91
  "./regression": {
115
92
  "types": "./regression/index.d.ts",
116
- "esm2020": "./esm2020/regression/covalent-echarts-regression.mjs",
117
- "es2020": "./fesm2020/covalent-echarts-regression.mjs",
118
- "es2015": "./fesm2015/covalent-echarts-regression.mjs",
119
- "node": "./fesm2015/covalent-echarts-regression.mjs",
120
- "default": "./fesm2020/covalent-echarts-regression.mjs"
93
+ "esm2022": "./esm2022/regression/covalent-echarts-regression.mjs",
94
+ "esm": "./esm2022/regression/covalent-echarts-regression.mjs",
95
+ "default": "./fesm2022/covalent-echarts-regression.mjs"
121
96
  },
122
97
  "./sankey": {
123
98
  "types": "./sankey/index.d.ts",
124
- "esm2020": "./esm2020/sankey/covalent-echarts-sankey.mjs",
125
- "es2020": "./fesm2020/covalent-echarts-sankey.mjs",
126
- "es2015": "./fesm2015/covalent-echarts-sankey.mjs",
127
- "node": "./fesm2015/covalent-echarts-sankey.mjs",
128
- "default": "./fesm2020/covalent-echarts-sankey.mjs"
99
+ "esm2022": "./esm2022/sankey/covalent-echarts-sankey.mjs",
100
+ "esm": "./esm2022/sankey/covalent-echarts-sankey.mjs",
101
+ "default": "./fesm2022/covalent-echarts-sankey.mjs"
129
102
  },
130
103
  "./scatter": {
131
104
  "types": "./scatter/index.d.ts",
132
- "esm2020": "./esm2020/scatter/covalent-echarts-scatter.mjs",
133
- "es2020": "./fesm2020/covalent-echarts-scatter.mjs",
134
- "es2015": "./fesm2015/covalent-echarts-scatter.mjs",
135
- "node": "./fesm2015/covalent-echarts-scatter.mjs",
136
- "default": "./fesm2020/covalent-echarts-scatter.mjs"
105
+ "esm2022": "./esm2022/scatter/covalent-echarts-scatter.mjs",
106
+ "esm": "./esm2022/scatter/covalent-echarts-scatter.mjs",
107
+ "default": "./fesm2022/covalent-echarts-scatter.mjs"
137
108
  },
138
109
  "./toolbox": {
139
110
  "types": "./toolbox/index.d.ts",
140
- "esm2020": "./esm2020/toolbox/covalent-echarts-toolbox.mjs",
141
- "es2020": "./fesm2020/covalent-echarts-toolbox.mjs",
142
- "es2015": "./fesm2015/covalent-echarts-toolbox.mjs",
143
- "node": "./fesm2015/covalent-echarts-toolbox.mjs",
144
- "default": "./fesm2020/covalent-echarts-toolbox.mjs"
111
+ "esm2022": "./esm2022/toolbox/covalent-echarts-toolbox.mjs",
112
+ "esm": "./esm2022/toolbox/covalent-echarts-toolbox.mjs",
113
+ "default": "./fesm2022/covalent-echarts-toolbox.mjs"
145
114
  },
146
115
  "./tooltip": {
147
116
  "types": "./tooltip/index.d.ts",
148
- "esm2020": "./esm2020/tooltip/covalent-echarts-tooltip.mjs",
149
- "es2020": "./fesm2020/covalent-echarts-tooltip.mjs",
150
- "es2015": "./fesm2015/covalent-echarts-tooltip.mjs",
151
- "node": "./fesm2015/covalent-echarts-tooltip.mjs",
152
- "default": "./fesm2020/covalent-echarts-tooltip.mjs"
117
+ "esm2022": "./esm2022/tooltip/covalent-echarts-tooltip.mjs",
118
+ "esm": "./esm2022/tooltip/covalent-echarts-tooltip.mjs",
119
+ "default": "./fesm2022/covalent-echarts-tooltip.mjs"
153
120
  },
154
121
  "./tree": {
155
122
  "types": "./tree/index.d.ts",
156
- "esm2020": "./esm2020/tree/covalent-echarts-tree.mjs",
157
- "es2020": "./fesm2020/covalent-echarts-tree.mjs",
158
- "es2015": "./fesm2015/covalent-echarts-tree.mjs",
159
- "node": "./fesm2015/covalent-echarts-tree.mjs",
160
- "default": "./fesm2020/covalent-echarts-tree.mjs"
123
+ "esm2022": "./esm2022/tree/covalent-echarts-tree.mjs",
124
+ "esm": "./esm2022/tree/covalent-echarts-tree.mjs",
125
+ "default": "./fesm2022/covalent-echarts-tree.mjs"
161
126
  },
162
127
  "./treemap": {
163
128
  "types": "./treemap/index.d.ts",
164
- "esm2020": "./esm2020/treemap/covalent-echarts-treemap.mjs",
165
- "es2020": "./fesm2020/covalent-echarts-treemap.mjs",
166
- "es2015": "./fesm2015/covalent-echarts-treemap.mjs",
167
- "node": "./fesm2015/covalent-echarts-treemap.mjs",
168
- "default": "./fesm2020/covalent-echarts-treemap.mjs"
129
+ "esm2022": "./esm2022/treemap/covalent-echarts-treemap.mjs",
130
+ "esm": "./esm2022/treemap/covalent-echarts-treemap.mjs",
131
+ "default": "./fesm2022/covalent-echarts-treemap.mjs"
169
132
  },
170
133
  "./wordcloud": {
171
134
  "types": "./wordcloud/index.d.ts",
172
- "esm2020": "./esm2020/wordcloud/covalent-echarts-wordcloud.mjs",
173
- "es2020": "./fesm2020/covalent-echarts-wordcloud.mjs",
174
- "es2015": "./fesm2015/covalent-echarts-wordcloud.mjs",
175
- "node": "./fesm2015/covalent-echarts-wordcloud.mjs",
176
- "default": "./fesm2020/covalent-echarts-wordcloud.mjs"
135
+ "esm2022": "./esm2022/wordcloud/covalent-echarts-wordcloud.mjs",
136
+ "esm": "./esm2022/wordcloud/covalent-echarts-wordcloud.mjs",
137
+ "default": "./fesm2022/covalent-echarts-wordcloud.mjs"
177
138
  }
178
139
  },
179
140
  "sideEffects": false
180
- }
141
+ }
@@ -60,5 +60,5 @@ export declare class TdChartSeriesPieComponent extends TdSeriesDirective impleme
60
60
  constructor(_optionsService: TdChartOptionsService);
61
61
  getConfig(): any;
62
62
  static ɵfac: i0.ɵɵFactoryDeclaration<TdChartSeriesPieComponent, never>;
63
- static ɵcmp: i0.ɵɵComponentDeclaration<TdChartSeriesPieComponent, "td-chart-series[td-pie]", never, { "config": "config"; "id": "id"; "name": "name"; "color": "color"; "data": "data"; "animation": "animation"; "animationThreshold": "animationThreshold"; "animationDuration": "animationDuration"; "animationEasing": "animationEasing"; "animationDelay": "animationDelay"; "animationDurationUpdate": "animationDurationUpdate"; "animationEasingUpdate": "animationEasingUpdate"; "animationDelayUpdate": "animationDelayUpdate"; "tooltip": "tooltip"; "legendHoverLink": "legendHoverLink"; "hoverAnimation": "hoverAnimation"; "hoverOffset": "hoverOffset"; "selectedMode": "selectedMode"; "selectedOffset": "selectedOffset"; "clockwise": "clockwise"; "startAngle": "startAngle"; "minAngle": "minAngle"; "minShowLabelAngle": "minShowLabelAngle"; "roseType": "roseType"; "avoidLabelOverlap": "avoidLabelOverlap"; "stillShowZeroSum": "stillShowZeroSum"; "cursor": "cursor"; "labelLine": "labelLine"; "label": "label"; "itemStyle": "itemStyle"; "emphasis": "emphasis"; "seriesLayoutBy": "seriesLayoutBy"; "datasetIndex": "datasetIndex"; "markPoint": "markPoint"; "markLine": "markLine"; "markArea": "markArea"; "zlevel": "zlevel"; "z": "z"; "center": "center"; "radius": "radius"; }, {}, never, never, false, never>;
63
+ static ɵcmp: i0.ɵɵComponentDeclaration<TdChartSeriesPieComponent, "td-chart-series[td-pie]", never, { "config": { "alias": "config"; "required": false; }; "id": { "alias": "id"; "required": false; }; "name": { "alias": "name"; "required": false; }; "color": { "alias": "color"; "required": false; }; "data": { "alias": "data"; "required": false; }; "animation": { "alias": "animation"; "required": false; }; "animationThreshold": { "alias": "animationThreshold"; "required": false; }; "animationDuration": { "alias": "animationDuration"; "required": false; }; "animationEasing": { "alias": "animationEasing"; "required": false; }; "animationDelay": { "alias": "animationDelay"; "required": false; }; "animationDurationUpdate": { "alias": "animationDurationUpdate"; "required": false; }; "animationEasingUpdate": { "alias": "animationEasingUpdate"; "required": false; }; "animationDelayUpdate": { "alias": "animationDelayUpdate"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "legendHoverLink": { "alias": "legendHoverLink"; "required": false; }; "hoverAnimation": { "alias": "hoverAnimation"; "required": false; }; "hoverOffset": { "alias": "hoverOffset"; "required": false; }; "selectedMode": { "alias": "selectedMode"; "required": false; }; "selectedOffset": { "alias": "selectedOffset"; "required": false; }; "clockwise": { "alias": "clockwise"; "required": false; }; "startAngle": { "alias": "startAngle"; "required": false; }; "minAngle": { "alias": "minAngle"; "required": false; }; "minShowLabelAngle": { "alias": "minShowLabelAngle"; "required": false; }; "roseType": { "alias": "roseType"; "required": false; }; "avoidLabelOverlap": { "alias": "avoidLabelOverlap"; "required": false; }; "stillShowZeroSum": { "alias": "stillShowZeroSum"; "required": false; }; "cursor": { "alias": "cursor"; "required": false; }; "labelLine": { "alias": "labelLine"; "required": false; }; "label": { "alias": "label"; "required": false; }; "itemStyle": { "alias": "itemStyle"; "required": false; }; "emphasis": { "alias": "emphasis"; "required": false; }; "seriesLayoutBy": { "alias": "seriesLayoutBy"; "required": false; }; "datasetIndex": { "alias": "datasetIndex"; "required": false; }; "markPoint": { "alias": "markPoint"; "required": false; }; "markLine": { "alias": "markLine"; "required": false; }; "markArea": { "alias": "markArea"; "required": false; }; "zlevel": { "alias": "zlevel"; "required": false; }; "z": { "alias": "z"; "required": false; }; "center": { "alias": "center"; "required": false; }; "radius": { "alias": "radius"; "required": false; }; }, {}, never, never, false, never>;
64
64
  }
@@ -18,5 +18,5 @@ export declare class TdChartSeriesRegressionComponent extends TdChartSeriesScatt
18
18
  private setOptions;
19
19
  private render;
20
20
  static ɵfac: i0.ɵɵFactoryDeclaration<TdChartSeriesRegressionComponent, never>;
21
- static ɵcmp: i0.ɵɵComponentDeclaration<TdChartSeriesRegressionComponent, "td-chart-series[td-regression]", never, { "config": "config"; "id": "id"; "name": "name"; "color": "color"; "data": "data"; "animation": "animation"; "animationThreshold": "animationThreshold"; "animationDuration": "animationDuration"; "animationEasing": "animationEasing"; "animationDelay": "animationDelay"; "animationDurationUpdate": "animationDurationUpdate"; "animationEasingUpdate": "animationEasingUpdate"; "animationDelayUpdate": "animationDelayUpdate"; "tooltip": "tooltip"; "regressionType": "regressionType"; "polinomialOrder": "polinomialOrder"; }, {}, never, never, false, never>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<TdChartSeriesRegressionComponent, "td-chart-series[td-regression]", never, { "config": { "alias": "config"; "required": false; }; "id": { "alias": "id"; "required": false; }; "name": { "alias": "name"; "required": false; }; "color": { "alias": "color"; "required": false; }; "data": { "alias": "data"; "required": false; }; "animation": { "alias": "animation"; "required": false; }; "animationThreshold": { "alias": "animationThreshold"; "required": false; }; "animationDuration": { "alias": "animationDuration"; "required": false; }; "animationEasing": { "alias": "animationEasing"; "required": false; }; "animationDelay": { "alias": "animationDelay"; "required": false; }; "animationDurationUpdate": { "alias": "animationDurationUpdate"; "required": false; }; "animationEasingUpdate": { "alias": "animationEasingUpdate"; "required": false; }; "animationDelayUpdate": { "alias": "animationDelayUpdate"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "regressionType": { "alias": "regressionType"; "required": false; }; "polinomialOrder": { "alias": "polinomialOrder"; "required": false; }; }, {}, never, never, false, never>;
22
22
  }
@@ -61,5 +61,5 @@ export declare class TdChartSeriesSankeyComponent extends TdSeriesDirective impl
61
61
  constructor(_optionsService: TdChartOptionsService);
62
62
  getConfig(): any;
63
63
  static ɵfac: i0.ɵɵFactoryDeclaration<TdChartSeriesSankeyComponent, never>;
64
- static ɵcmp: i0.ɵɵComponentDeclaration<TdChartSeriesSankeyComponent, "td-chart-series[td-sankey]", never, { "config": "config"; "id": "id"; "name": "name"; "color": "color"; "data": "data"; "animation": "animation"; "animationThreshold": "animationThreshold"; "animationDuration": "animationDuration"; "animationEasing": "animationEasing"; "animationDelay": "animationDelay"; "animationDurationUpdate": "animationDurationUpdate"; "animationEasingUpdate": "animationEasingUpdate"; "animationDelayUpdate": "animationDelayUpdate"; "tooltip": "tooltip"; "zlevel": "zlevel"; "z": "z"; "left": "left"; "top": "top"; "right": "right"; "bottom": "bottom"; "width": "width"; "height": "height"; "nodeWidth": "nodeWidth"; "nodeGap": "nodeGap"; "layoutIterations": "layoutIterations"; "orient": "orient"; "draggable": "draggable"; "focusNodeAdjacency": "focusNodeAdjacency"; "label": "label"; "itemStyle": "itemStyle"; "lineStyle": "lineStyle"; "emphasis": "emphasis"; "nodes": "nodes"; "links": "links"; "edges": "edges"; "silent": "silent"; }, {}, never, never, false, never>;
64
+ static ɵcmp: i0.ɵɵComponentDeclaration<TdChartSeriesSankeyComponent, "td-chart-series[td-sankey]", never, { "config": { "alias": "config"; "required": false; }; "id": { "alias": "id"; "required": false; }; "name": { "alias": "name"; "required": false; }; "color": { "alias": "color"; "required": false; }; "data": { "alias": "data"; "required": false; }; "animation": { "alias": "animation"; "required": false; }; "animationThreshold": { "alias": "animationThreshold"; "required": false; }; "animationDuration": { "alias": "animationDuration"; "required": false; }; "animationEasing": { "alias": "animationEasing"; "required": false; }; "animationDelay": { "alias": "animationDelay"; "required": false; }; "animationDurationUpdate": { "alias": "animationDurationUpdate"; "required": false; }; "animationEasingUpdate": { "alias": "animationEasingUpdate"; "required": false; }; "animationDelayUpdate": { "alias": "animationDelayUpdate"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "zlevel": { "alias": "zlevel"; "required": false; }; "z": { "alias": "z"; "required": false; }; "left": { "alias": "left"; "required": false; }; "top": { "alias": "top"; "required": false; }; "right": { "alias": "right"; "required": false; }; "bottom": { "alias": "bottom"; "required": false; }; "width": { "alias": "width"; "required": false; }; "height": { "alias": "height"; "required": false; }; "nodeWidth": { "alias": "nodeWidth"; "required": false; }; "nodeGap": { "alias": "nodeGap"; "required": false; }; "layoutIterations": { "alias": "layoutIterations"; "required": false; }; "orient": { "alias": "orient"; "required": false; }; "draggable": { "alias": "draggable"; "required": false; }; "focusNodeAdjacency": { "alias": "focusNodeAdjacency"; "required": false; }; "label": { "alias": "label"; "required": false; }; "itemStyle": { "alias": "itemStyle"; "required": false; }; "lineStyle": { "alias": "lineStyle"; "required": false; }; "emphasis": { "alias": "emphasis"; "required": false; }; "nodes": { "alias": "nodes"; "required": false; }; "links": { "alias": "links"; "required": false; }; "edges": { "alias": "edges"; "required": false; }; "silent": { "alias": "silent"; "required": false; }; }, {}, never, never, false, never>;
65
65
  }