@covalent/echarts 6.4.0 → 6.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bar/bar.component.d.ts +1 -1
- package/base/axis/axis.component.d.ts +1 -1
- package/base/axis/x-axis.component.d.ts +1 -1
- package/base/axis/y-axis.component.d.ts +1 -1
- package/base/chart.component.d.ts +1 -1
- package/base/dataset/dataset.component.d.ts +1 -1
- package/base/series/series.component.d.ts +1 -1
- package/base/src/axis/README.md +58 -0
- package/base/src/dataset/README.md +80 -0
- package/clustering/clustering.component.d.ts +1 -1
- package/esm2020/bar/bar.component.mjs +135 -0
- package/{esm2022 → esm2020}/bar/bar.module.mjs +5 -5
- package/esm2020/base/axis/axis.component.mjs +127 -0
- package/esm2020/base/axis/x-axis.component.mjs +55 -0
- package/esm2020/base/axis/y-axis.component.mjs +55 -0
- package/{esm2022 → esm2020}/base/base.module.mjs +11 -11
- package/esm2020/base/chart-options.service.mjs +65 -0
- package/esm2020/base/chart.component.mjs +195 -0
- package/esm2020/base/dataset/dataset.component.mjs +52 -0
- package/esm2020/base/series/series.component.mjs +91 -0
- package/esm2020/clustering/clustering.component.mjs +233 -0
- package/{esm2022 → esm2020}/clustering/clustering.module.mjs +5 -5
- package/esm2020/graph/graph.component.mjs +185 -0
- package/{esm2022 → esm2020}/graph/graph.module.mjs +5 -5
- package/esm2020/histogram/histogram.component.mjs +125 -0
- package/{esm2022 → esm2020}/histogram/histogram.module.mjs +5 -5
- package/esm2020/line/line.component.mjs +159 -0
- package/{esm2022 → esm2020}/line/line.module.mjs +5 -5
- package/esm2020/map/map.component.mjs +132 -0
- package/{esm2022 → esm2020}/map/map.module.mjs +5 -5
- package/esm2020/pie/pie.component.mjs +127 -0
- package/{esm2022 → esm2020}/pie/pie.module.mjs +5 -5
- package/esm2020/regression/regression.component.mjs +137 -0
- package/{esm2022 → esm2020}/regression/regression.module.mjs +5 -5
- package/esm2020/sankey/sankey.component.mjs +117 -0
- package/{esm2022 → esm2020}/sankey/sankey.module.mjs +5 -5
- package/esm2020/scatter/scatter.component.mjs +144 -0
- package/{esm2022 → esm2020}/scatter/scatter.module.mjs +5 -5
- package/esm2020/toolbox/toolbox.component.mjs +135 -0
- package/{esm2022 → esm2020}/toolbox/toolbox.module.mjs +7 -7
- package/esm2020/tooltip/series-tooltip.component.mjs +102 -0
- package/esm2020/tooltip/tooltip.component.mjs +156 -0
- package/{esm2022 → esm2020}/tooltip/tooltip.module.mjs +9 -9
- package/esm2020/tree/tree.component.mjs +117 -0
- package/{esm2022 → esm2020}/tree/tree.module.mjs +5 -5
- package/esm2020/treemap/treemap.component.mjs +149 -0
- package/{esm2022 → esm2020}/treemap/treemap.module.mjs +5 -5
- package/esm2020/wordcloud/wordcloud.component.mjs +92 -0
- package/{esm2022 → esm2020}/wordcloud/wordcloud.module.mjs +5 -5
- package/{fesm2022 → fesm2015}/covalent-echarts-bar.mjs +12 -40
- package/fesm2015/covalent-echarts-bar.mjs.map +1 -0
- package/fesm2015/covalent-echarts-base.mjs +4931 -0
- package/{fesm2022 → fesm2015}/covalent-echarts-base.mjs.map +1 -1
- package/{fesm2022 → fesm2015}/covalent-echarts-clustering.mjs +12 -54
- package/fesm2015/covalent-echarts-clustering.mjs.map +1 -0
- package/{fesm2022 → fesm2015}/covalent-echarts-graph.mjs +12 -57
- package/{fesm2022 → fesm2015}/covalent-echarts-graph.mjs.map +1 -1
- package/fesm2015/covalent-echarts-histogram.mjs +151 -0
- package/fesm2015/covalent-echarts-histogram.mjs.map +1 -0
- package/{fesm2022 → fesm2015}/covalent-echarts-line.mjs +12 -48
- package/fesm2015/covalent-echarts-line.mjs.map +1 -0
- package/{fesm2022 → fesm2015}/covalent-echarts-map.mjs +12 -39
- package/fesm2015/covalent-echarts-map.mjs.map +1 -0
- package/{fesm2022 → fesm2015}/covalent-echarts-pie.mjs +12 -38
- package/fesm2015/covalent-echarts-pie.mjs.map +1 -0
- package/fesm2015/covalent-echarts-regression.mjs +163 -0
- package/fesm2015/covalent-echarts-regression.mjs.map +1 -0
- package/{fesm2022 → fesm2015}/covalent-echarts-sankey.mjs +12 -34
- package/fesm2015/covalent-echarts-sankey.mjs.map +1 -0
- package/{fesm2022 → fesm2015}/covalent-echarts-scatter.mjs +12 -43
- package/fesm2015/covalent-echarts-scatter.mjs.map +1 -0
- package/fesm2015/covalent-echarts-toolbox.mjs +158 -0
- package/fesm2015/covalent-echarts-toolbox.mjs.map +1 -0
- package/{fesm2022 → fesm2015}/covalent-echarts-tooltip.mjs +47 -69
- package/{fesm2022 → fesm2015}/covalent-echarts-tooltip.mjs.map +1 -1
- package/{fesm2022 → fesm2015}/covalent-echarts-tree.mjs +12 -34
- package/{fesm2022 → fesm2015}/covalent-echarts-tree.mjs.map +1 -1
- package/{fesm2022 → fesm2015}/covalent-echarts-treemap.mjs +13 -46
- package/fesm2015/covalent-echarts-treemap.mjs.map +1 -0
- package/{fesm2022 → fesm2015}/covalent-echarts-wordcloud.mjs +12 -26
- package/fesm2015/covalent-echarts-wordcloud.mjs.map +1 -0
- package/fesm2020/covalent-echarts-bar.mjs +158 -0
- package/fesm2020/covalent-echarts-bar.mjs.map +1 -0
- package/{fesm2022 → fesm2020}/covalent-echarts-base.mjs +69 -135
- package/fesm2020/covalent-echarts-base.mjs.map +1 -0
- package/fesm2020/covalent-echarts-clustering.mjs +258 -0
- package/{fesm2022 → fesm2020}/covalent-echarts-clustering.mjs.map +1 -1
- package/fesm2020/covalent-echarts-graph.mjs +210 -0
- package/fesm2020/covalent-echarts-graph.mjs.map +1 -0
- package/{fesm2022 → fesm2020}/covalent-echarts-histogram.mjs +12 -14
- package/{fesm2022 → fesm2020}/covalent-echarts-histogram.mjs.map +1 -1
- package/fesm2020/covalent-echarts-line.mjs +182 -0
- package/fesm2020/covalent-echarts-line.mjs.map +1 -0
- package/fesm2020/covalent-echarts-map.mjs +155 -0
- package/{fesm2022 → fesm2020}/covalent-echarts-map.mjs.map +1 -1
- package/fesm2020/covalent-echarts-pie.mjs +150 -0
- package/fesm2020/covalent-echarts-pie.mjs.map +1 -0
- package/{fesm2022 → fesm2020}/covalent-echarts-regression.mjs +12 -15
- package/fesm2020/covalent-echarts-regression.mjs.map +1 -0
- package/fesm2020/covalent-echarts-sankey.mjs +142 -0
- package/fesm2020/covalent-echarts-sankey.mjs.map +1 -0
- package/fesm2020/covalent-echarts-scatter.mjs +169 -0
- package/fesm2020/covalent-echarts-scatter.mjs.map +1 -0
- package/{fesm2022 → fesm2020}/covalent-echarts-toolbox.mjs +23 -37
- package/{fesm2022 → fesm2020}/covalent-echarts-toolbox.mjs.map +1 -1
- package/fesm2020/covalent-echarts-tooltip.mjs +283 -0
- package/fesm2020/covalent-echarts-tooltip.mjs.map +1 -0
- package/fesm2020/covalent-echarts-tree.mjs +140 -0
- package/fesm2020/covalent-echarts-tree.mjs.map +1 -0
- package/fesm2020/covalent-echarts-treemap.mjs +174 -0
- package/fesm2020/covalent-echarts-treemap.mjs.map +1 -0
- package/fesm2020/covalent-echarts-wordcloud.mjs +117 -0
- package/fesm2020/covalent-echarts-wordcloud.mjs.map +1 -0
- package/fesm2020/covalent-echarts.mjs +4 -0
- package/fesm2020/covalent-echarts.mjs.map +1 -0
- package/graph/graph.component.d.ts +1 -1
- package/histogram/histogram.component.d.ts +1 -1
- package/line/line.component.d.ts +1 -1
- package/map/map.component.d.ts +1 -1
- package/package.json +99 -57
- package/pie/pie.component.d.ts +1 -1
- package/regression/regression.component.d.ts +1 -1
- package/sankey/sankey.component.d.ts +1 -1
- package/scatter/scatter.component.d.ts +1 -1
- package/toolbox/toolbox.component.d.ts +1 -1
- package/tooltip/series-tooltip.component.d.ts +1 -1
- package/tooltip/tooltip.component.d.ts +1 -1
- package/tree/tree.component.d.ts +1 -1
- package/treemap/treemap.component.d.ts +2 -2
- package/wordcloud/wordcloud.component.d.ts +1 -1
- package/esm2022/bar/bar.component.mjs +0 -163
- package/esm2022/base/axis/axis.component.mjs +0 -157
- package/esm2022/base/axis/x-axis.component.mjs +0 -56
- package/esm2022/base/axis/y-axis.component.mjs +0 -56
- package/esm2022/base/chart-options.service.mjs +0 -63
- package/esm2022/base/chart.component.mjs +0 -211
- package/esm2022/base/dataset/dataset.component.mjs +0 -57
- package/esm2022/base/series/series.component.mjs +0 -106
- package/esm2022/clustering/clustering.component.mjs +0 -275
- package/esm2022/graph/graph.component.mjs +0 -230
- package/esm2022/histogram/histogram.component.mjs +0 -127
- package/esm2022/line/line.component.mjs +0 -195
- package/esm2022/map/map.component.mjs +0 -159
- package/esm2022/pie/pie.component.mjs +0 -153
- package/esm2022/regression/regression.component.mjs +0 -140
- package/esm2022/sankey/sankey.component.mjs +0 -139
- package/esm2022/scatter/scatter.component.mjs +0 -175
- package/esm2022/toolbox/toolbox.component.mjs +0 -149
- package/esm2022/tooltip/series-tooltip.component.mjs +0 -112
- package/esm2022/tooltip/tooltip.component.mjs +0 -168
- package/esm2022/tree/tree.component.mjs +0 -139
- package/esm2022/treemap/treemap.component.mjs +0 -182
- package/esm2022/wordcloud/wordcloud.component.mjs +0 -106
- package/fesm2022/covalent-echarts-bar.mjs.map +0 -1
- package/fesm2022/covalent-echarts-line.mjs.map +0 -1
- package/fesm2022/covalent-echarts-pie.mjs.map +0 -1
- package/fesm2022/covalent-echarts-regression.mjs.map +0 -1
- package/fesm2022/covalent-echarts-sankey.mjs.map +0 -1
- package/fesm2022/covalent-echarts-scatter.mjs.map +0 -1
- package/fesm2022/covalent-echarts-treemap.mjs.map +0 -1
- package/fesm2022/covalent-echarts-wordcloud.mjs.map +0 -1
- /package/{esm2022 → esm2020}/bar/covalent-echarts-bar.mjs +0 -0
- /package/{esm2022 → esm2020}/bar/public_api.mjs +0 -0
- /package/{esm2022 → esm2020}/base/axis/axis.interface.mjs +0 -0
- /package/{esm2022 → esm2020}/base/base.types.mjs +0 -0
- /package/{esm2022 → esm2020}/base/covalent-echarts-base.mjs +0 -0
- /package/{esm2022 → esm2020}/base/public_api.mjs +0 -0
- /package/{esm2022 → esm2020}/base/series/series.interface.mjs +0 -0
- /package/{esm2022 → esm2020}/base/themes/aqua-splash.mjs +0 -0
- /package/{esm2022 → esm2020}/base/themes/california-coast.mjs +0 -0
- /package/{esm2022 → esm2020}/base/themes/hawaiian-sunrise.mjs +0 -0
- /package/{esm2022 → esm2020}/base/themes/passion-flower.mjs +0 -0
- /package/{esm2022 → esm2020}/base/themes/razzleberry-pie.mjs +0 -0
- /package/{esm2022 → esm2020}/base/themes/teradata-classic.mjs +0 -0
- /package/{esm2022 → esm2020}/base/themes/teradata-default.mjs +0 -0
- /package/{esm2022 → esm2020}/base/themes/urban-sunrise.mjs +0 -0
- /package/{esm2022 → esm2020}/base/themes/volcanic-eruption.mjs +0 -0
- /package/{esm2022 → esm2020}/base/utils/assign-defined.mjs +0 -0
- /package/{esm2022 → esm2020}/base/utils/echarts.mjs +0 -0
- /package/{esm2022 → esm2020}/base/utils/index.mjs +0 -0
- /package/{esm2022 → esm2020}/clustering/covalent-echarts-clustering.mjs +0 -0
- /package/{esm2022 → esm2020}/clustering/public_api.mjs +0 -0
- /package/{esm2022 → esm2020}/covalent-echarts.mjs +0 -0
- /package/{esm2022 → esm2020}/graph/covalent-echarts-graph.mjs +0 -0
- /package/{esm2022 → esm2020}/graph/public_api.mjs +0 -0
- /package/{esm2022 → esm2020}/histogram/covalent-echarts-histogram.mjs +0 -0
- /package/{esm2022 → esm2020}/histogram/public_api.mjs +0 -0
- /package/{esm2022 → esm2020}/line/covalent-echarts-line.mjs +0 -0
- /package/{esm2022 → esm2020}/line/public_api.mjs +0 -0
- /package/{esm2022 → esm2020}/map/covalent-echarts-map.mjs +0 -0
- /package/{esm2022 → esm2020}/map/public_api.mjs +0 -0
- /package/{esm2022 → esm2020}/pie/covalent-echarts-pie.mjs +0 -0
- /package/{esm2022 → esm2020}/pie/public_api.mjs +0 -0
- /package/{esm2022 → esm2020}/public_api.mjs +0 -0
- /package/{esm2022 → esm2020}/regression/covalent-echarts-regression.mjs +0 -0
- /package/{esm2022 → esm2020}/regression/public_api.mjs +0 -0
- /package/{esm2022 → esm2020}/sankey/covalent-echarts-sankey.mjs +0 -0
- /package/{esm2022 → esm2020}/sankey/public_api.mjs +0 -0
- /package/{esm2022 → esm2020}/scatter/covalent-echarts-scatter.mjs +0 -0
- /package/{esm2022 → esm2020}/scatter/public_api.mjs +0 -0
- /package/{esm2022 → esm2020}/toolbox/covalent-echarts-toolbox.mjs +0 -0
- /package/{esm2022 → esm2020}/toolbox/public_api.mjs +0 -0
- /package/{esm2022 → esm2020}/tooltip/covalent-echarts-tooltip.mjs +0 -0
- /package/{esm2022 → esm2020}/tooltip/public_api.mjs +0 -0
- /package/{esm2022 → esm2020}/tree/covalent-echarts-tree.mjs +0 -0
- /package/{esm2022 → esm2020}/tree/public_api.mjs +0 -0
- /package/{esm2022 → esm2020}/treemap/covalent-echarts-treemap.mjs +0 -0
- /package/{esm2022 → esm2020}/treemap/public_api.mjs +0 -0
- /package/{esm2022 → esm2020}/wordcloud/covalent-echarts-wordcloud.mjs +0 -0
- /package/{esm2022 → esm2020}/wordcloud/public_api.mjs +0 -0
- /package/{fesm2022 → fesm2015}/covalent-echarts.mjs +0 -0
- /package/{fesm2022 → fesm2015}/covalent-echarts.mjs.map +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@covalent/echarts",
|
|
3
|
-
"version": "6.4.
|
|
3
|
+
"version": "6.4.1",
|
|
4
4
|
"description": "Teradata UI Platform Echarts Module",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"angular",
|
|
@@ -19,16 +19,24 @@
|
|
|
19
19
|
"license": "MIT",
|
|
20
20
|
"author": "Teradata UX",
|
|
21
21
|
"peerDependencies": {
|
|
22
|
-
"@angular/common": "
|
|
23
|
-
"@angular/core": "
|
|
22
|
+
"@angular/common": "^15.2.10",
|
|
23
|
+
"@angular/core": "^15.2.10",
|
|
24
24
|
"echarts": "^5.3.0",
|
|
25
|
-
"
|
|
25
|
+
"rxjs": "7.8.1",
|
|
26
|
+
"echarts-stat": "1.2.0"
|
|
27
|
+
},
|
|
28
|
+
"optionalDependencies": {
|
|
29
|
+
"echarts-stat": "^1.2.0",
|
|
26
30
|
"echarts-wordcloud": "^2.0.0"
|
|
27
31
|
},
|
|
28
32
|
"dependencies": {
|
|
29
33
|
"tslib": "^2.0.0"
|
|
30
34
|
},
|
|
31
|
-
"module": "
|
|
35
|
+
"module": "fesm2015/covalent-echarts.mjs",
|
|
36
|
+
"es2020": "fesm2020/covalent-echarts.mjs",
|
|
37
|
+
"esm2020": "esm2020/covalent-echarts.mjs",
|
|
38
|
+
"fesm2020": "fesm2020/covalent-echarts.mjs",
|
|
39
|
+
"fesm2015": "fesm2015/covalent-echarts.mjs",
|
|
32
40
|
"typings": "index.d.ts",
|
|
33
41
|
"exports": {
|
|
34
42
|
"./package.json": {
|
|
@@ -36,106 +44,140 @@
|
|
|
36
44
|
},
|
|
37
45
|
".": {
|
|
38
46
|
"types": "./index.d.ts",
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
47
|
+
"esm2020": "./esm2020/covalent-echarts.mjs",
|
|
48
|
+
"es2020": "./fesm2020/covalent-echarts.mjs",
|
|
49
|
+
"es2015": "./fesm2015/covalent-echarts.mjs",
|
|
50
|
+
"node": "./fesm2015/covalent-echarts.mjs",
|
|
51
|
+
"default": "./fesm2020/covalent-echarts.mjs"
|
|
42
52
|
},
|
|
43
53
|
"./bar": {
|
|
44
54
|
"types": "./bar/index.d.ts",
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
55
|
+
"esm2020": "./esm2020/bar/covalent-echarts-bar.mjs",
|
|
56
|
+
"es2020": "./fesm2020/covalent-echarts-bar.mjs",
|
|
57
|
+
"es2015": "./fesm2015/covalent-echarts-bar.mjs",
|
|
58
|
+
"node": "./fesm2015/covalent-echarts-bar.mjs",
|
|
59
|
+
"default": "./fesm2020/covalent-echarts-bar.mjs"
|
|
48
60
|
},
|
|
49
61
|
"./base": {
|
|
50
62
|
"types": "./base/index.d.ts",
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
63
|
+
"esm2020": "./esm2020/base/covalent-echarts-base.mjs",
|
|
64
|
+
"es2020": "./fesm2020/covalent-echarts-base.mjs",
|
|
65
|
+
"es2015": "./fesm2015/covalent-echarts-base.mjs",
|
|
66
|
+
"node": "./fesm2015/covalent-echarts-base.mjs",
|
|
67
|
+
"default": "./fesm2020/covalent-echarts-base.mjs"
|
|
54
68
|
},
|
|
55
69
|
"./clustering": {
|
|
56
70
|
"types": "./clustering/index.d.ts",
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
71
|
+
"esm2020": "./esm2020/clustering/covalent-echarts-clustering.mjs",
|
|
72
|
+
"es2020": "./fesm2020/covalent-echarts-clustering.mjs",
|
|
73
|
+
"es2015": "./fesm2015/covalent-echarts-clustering.mjs",
|
|
74
|
+
"node": "./fesm2015/covalent-echarts-clustering.mjs",
|
|
75
|
+
"default": "./fesm2020/covalent-echarts-clustering.mjs"
|
|
60
76
|
},
|
|
61
77
|
"./graph": {
|
|
62
78
|
"types": "./graph/index.d.ts",
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"
|
|
79
|
+
"esm2020": "./esm2020/graph/covalent-echarts-graph.mjs",
|
|
80
|
+
"es2020": "./fesm2020/covalent-echarts-graph.mjs",
|
|
81
|
+
"es2015": "./fesm2015/covalent-echarts-graph.mjs",
|
|
82
|
+
"node": "./fesm2015/covalent-echarts-graph.mjs",
|
|
83
|
+
"default": "./fesm2020/covalent-echarts-graph.mjs"
|
|
66
84
|
},
|
|
67
85
|
"./histogram": {
|
|
68
86
|
"types": "./histogram/index.d.ts",
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"
|
|
87
|
+
"esm2020": "./esm2020/histogram/covalent-echarts-histogram.mjs",
|
|
88
|
+
"es2020": "./fesm2020/covalent-echarts-histogram.mjs",
|
|
89
|
+
"es2015": "./fesm2015/covalent-echarts-histogram.mjs",
|
|
90
|
+
"node": "./fesm2015/covalent-echarts-histogram.mjs",
|
|
91
|
+
"default": "./fesm2020/covalent-echarts-histogram.mjs"
|
|
72
92
|
},
|
|
73
93
|
"./line": {
|
|
74
94
|
"types": "./line/index.d.ts",
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
"
|
|
95
|
+
"esm2020": "./esm2020/line/covalent-echarts-line.mjs",
|
|
96
|
+
"es2020": "./fesm2020/covalent-echarts-line.mjs",
|
|
97
|
+
"es2015": "./fesm2015/covalent-echarts-line.mjs",
|
|
98
|
+
"node": "./fesm2015/covalent-echarts-line.mjs",
|
|
99
|
+
"default": "./fesm2020/covalent-echarts-line.mjs"
|
|
78
100
|
},
|
|
79
101
|
"./map": {
|
|
80
102
|
"types": "./map/index.d.ts",
|
|
81
|
-
"
|
|
82
|
-
"
|
|
83
|
-
"
|
|
103
|
+
"esm2020": "./esm2020/map/covalent-echarts-map.mjs",
|
|
104
|
+
"es2020": "./fesm2020/covalent-echarts-map.mjs",
|
|
105
|
+
"es2015": "./fesm2015/covalent-echarts-map.mjs",
|
|
106
|
+
"node": "./fesm2015/covalent-echarts-map.mjs",
|
|
107
|
+
"default": "./fesm2020/covalent-echarts-map.mjs"
|
|
84
108
|
},
|
|
85
109
|
"./pie": {
|
|
86
110
|
"types": "./pie/index.d.ts",
|
|
87
|
-
"
|
|
88
|
-
"
|
|
89
|
-
"
|
|
111
|
+
"esm2020": "./esm2020/pie/covalent-echarts-pie.mjs",
|
|
112
|
+
"es2020": "./fesm2020/covalent-echarts-pie.mjs",
|
|
113
|
+
"es2015": "./fesm2015/covalent-echarts-pie.mjs",
|
|
114
|
+
"node": "./fesm2015/covalent-echarts-pie.mjs",
|
|
115
|
+
"default": "./fesm2020/covalent-echarts-pie.mjs"
|
|
90
116
|
},
|
|
91
117
|
"./regression": {
|
|
92
118
|
"types": "./regression/index.d.ts",
|
|
93
|
-
"
|
|
94
|
-
"
|
|
95
|
-
"
|
|
119
|
+
"esm2020": "./esm2020/regression/covalent-echarts-regression.mjs",
|
|
120
|
+
"es2020": "./fesm2020/covalent-echarts-regression.mjs",
|
|
121
|
+
"es2015": "./fesm2015/covalent-echarts-regression.mjs",
|
|
122
|
+
"node": "./fesm2015/covalent-echarts-regression.mjs",
|
|
123
|
+
"default": "./fesm2020/covalent-echarts-regression.mjs"
|
|
96
124
|
},
|
|
97
125
|
"./sankey": {
|
|
98
126
|
"types": "./sankey/index.d.ts",
|
|
99
|
-
"
|
|
100
|
-
"
|
|
101
|
-
"
|
|
127
|
+
"esm2020": "./esm2020/sankey/covalent-echarts-sankey.mjs",
|
|
128
|
+
"es2020": "./fesm2020/covalent-echarts-sankey.mjs",
|
|
129
|
+
"es2015": "./fesm2015/covalent-echarts-sankey.mjs",
|
|
130
|
+
"node": "./fesm2015/covalent-echarts-sankey.mjs",
|
|
131
|
+
"default": "./fesm2020/covalent-echarts-sankey.mjs"
|
|
102
132
|
},
|
|
103
133
|
"./scatter": {
|
|
104
134
|
"types": "./scatter/index.d.ts",
|
|
105
|
-
"
|
|
106
|
-
"
|
|
107
|
-
"
|
|
135
|
+
"esm2020": "./esm2020/scatter/covalent-echarts-scatter.mjs",
|
|
136
|
+
"es2020": "./fesm2020/covalent-echarts-scatter.mjs",
|
|
137
|
+
"es2015": "./fesm2015/covalent-echarts-scatter.mjs",
|
|
138
|
+
"node": "./fesm2015/covalent-echarts-scatter.mjs",
|
|
139
|
+
"default": "./fesm2020/covalent-echarts-scatter.mjs"
|
|
108
140
|
},
|
|
109
141
|
"./toolbox": {
|
|
110
142
|
"types": "./toolbox/index.d.ts",
|
|
111
|
-
"
|
|
112
|
-
"
|
|
113
|
-
"
|
|
143
|
+
"esm2020": "./esm2020/toolbox/covalent-echarts-toolbox.mjs",
|
|
144
|
+
"es2020": "./fesm2020/covalent-echarts-toolbox.mjs",
|
|
145
|
+
"es2015": "./fesm2015/covalent-echarts-toolbox.mjs",
|
|
146
|
+
"node": "./fesm2015/covalent-echarts-toolbox.mjs",
|
|
147
|
+
"default": "./fesm2020/covalent-echarts-toolbox.mjs"
|
|
114
148
|
},
|
|
115
149
|
"./tooltip": {
|
|
116
150
|
"types": "./tooltip/index.d.ts",
|
|
117
|
-
"
|
|
118
|
-
"
|
|
119
|
-
"
|
|
151
|
+
"esm2020": "./esm2020/tooltip/covalent-echarts-tooltip.mjs",
|
|
152
|
+
"es2020": "./fesm2020/covalent-echarts-tooltip.mjs",
|
|
153
|
+
"es2015": "./fesm2015/covalent-echarts-tooltip.mjs",
|
|
154
|
+
"node": "./fesm2015/covalent-echarts-tooltip.mjs",
|
|
155
|
+
"default": "./fesm2020/covalent-echarts-tooltip.mjs"
|
|
120
156
|
},
|
|
121
157
|
"./tree": {
|
|
122
158
|
"types": "./tree/index.d.ts",
|
|
123
|
-
"
|
|
124
|
-
"
|
|
125
|
-
"
|
|
159
|
+
"esm2020": "./esm2020/tree/covalent-echarts-tree.mjs",
|
|
160
|
+
"es2020": "./fesm2020/covalent-echarts-tree.mjs",
|
|
161
|
+
"es2015": "./fesm2015/covalent-echarts-tree.mjs",
|
|
162
|
+
"node": "./fesm2015/covalent-echarts-tree.mjs",
|
|
163
|
+
"default": "./fesm2020/covalent-echarts-tree.mjs"
|
|
126
164
|
},
|
|
127
165
|
"./treemap": {
|
|
128
166
|
"types": "./treemap/index.d.ts",
|
|
129
|
-
"
|
|
130
|
-
"
|
|
131
|
-
"
|
|
167
|
+
"esm2020": "./esm2020/treemap/covalent-echarts-treemap.mjs",
|
|
168
|
+
"es2020": "./fesm2020/covalent-echarts-treemap.mjs",
|
|
169
|
+
"es2015": "./fesm2015/covalent-echarts-treemap.mjs",
|
|
170
|
+
"node": "./fesm2015/covalent-echarts-treemap.mjs",
|
|
171
|
+
"default": "./fesm2020/covalent-echarts-treemap.mjs"
|
|
132
172
|
},
|
|
133
173
|
"./wordcloud": {
|
|
134
174
|
"types": "./wordcloud/index.d.ts",
|
|
135
|
-
"
|
|
136
|
-
"
|
|
137
|
-
"
|
|
175
|
+
"esm2020": "./esm2020/wordcloud/covalent-echarts-wordcloud.mjs",
|
|
176
|
+
"es2020": "./fesm2020/covalent-echarts-wordcloud.mjs",
|
|
177
|
+
"es2015": "./fesm2015/covalent-echarts-wordcloud.mjs",
|
|
178
|
+
"node": "./fesm2015/covalent-echarts-wordcloud.mjs",
|
|
179
|
+
"default": "./fesm2020/covalent-echarts-wordcloud.mjs"
|
|
138
180
|
}
|
|
139
181
|
},
|
|
140
182
|
"sideEffects": false
|
|
141
|
-
}
|
|
183
|
+
}
|
package/pie/pie.component.d.ts
CHANGED
|
@@ -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":
|
|
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>;
|
|
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":
|
|
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>;
|
|
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":
|
|
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>;
|
|
65
65
|
}
|
|
@@ -72,5 +72,5 @@ export declare class TdChartSeriesScatterComponent extends TdSeriesDirective imp
|
|
|
72
72
|
constructor(_optionsService: TdChartOptionsService);
|
|
73
73
|
getConfig(): any;
|
|
74
74
|
static ɵfac: i0.ɵɵFactoryDeclaration<TdChartSeriesScatterComponent, never>;
|
|
75
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TdChartSeriesScatterComponent, "td-chart-series[td-scatter]", never, { "config":
|
|
75
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TdChartSeriesScatterComponent, "td-chart-series[td-scatter]", never, { "config": "config"; "id": "id"; "name": "name"; "color": "color"; "data": "data"; "animation": "animation"; "animationThreshold": "animationThreshold"; "animationDuration": "animationDuration"; "animationEasing": "animationEasing"; "animationDelay": "animationDelay"; "animationDurationUpdate": "animationDurationUpdate"; "animationEasingUpdate": "animationEasingUpdate"; "animationDelayUpdate": "animationDelayUpdate"; "tooltip": "tooltip"; "coordinateSystem": "coordinateSystem"; "xAxisIndex": "xAxisIndex"; "yAxisIndex": "yAxisIndex"; "polarIndex": "polarIndex"; "geoIndex": "geoIndex"; "calendarIndex": "calendarIndex"; "hoverAnimation": "hoverAnimation"; "legendHoverLink": "legendHoverLink"; "symbol": "symbol"; "symbolSize": "symbolSize"; "symbolRotate": "symbolRotate"; "symbolKeepAspect": "symbolKeepAspect"; "symbolOffset": "symbolOffset"; "large": "large"; "largeThreshold": "largeThreshold"; "cursor": "cursor"; "label": "label"; "itemStyle": "itemStyle"; "emphasis": "emphasis"; "progressive": "progressive"; "progressiveThreshold": "progressiveThreshold"; "dimensions": "dimensions"; "encode": "encode"; "seriesLayoutBy": "seriesLayoutBy"; "datasetIndex": "datasetIndex"; "markPoint": "markPoint"; "markLine": "markLine"; "markArea": "markArea"; "zlevel": "zlevel"; "z": "z"; "silent": "silent"; }, {}, never, never, false, never>;
|
|
76
76
|
}
|
|
@@ -138,5 +138,5 @@ export declare class TdChartToolboxComponent implements OnChanges, OnDestroy {
|
|
|
138
138
|
private _checkFormatterTemplate;
|
|
139
139
|
private _optionToContentFormatter;
|
|
140
140
|
static ɵfac: i0.ɵɵFactoryDeclaration<TdChartToolboxComponent, never>;
|
|
141
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TdChartToolboxComponent, "td-chart-toolbox", never, { "config":
|
|
141
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TdChartToolboxComponent, "td-chart-toolbox", never, { "config": "config"; "show": "show"; "trigger": "trigger"; "orient": "orient"; "itemSize": "itemSize"; "itemGap": "itemGap"; "showTitle": "showTitle"; "label": "label"; "feature": "feature"; "iconStyle": "iconStyle"; "zlevel": "zlevel"; "z": "z"; "transitionDuration": "transitionDuration"; "left": "left"; "top": "top"; "right": "right"; "bottom": "bottom"; "width": "width"; "height": "height"; }, {}, ["formatterTemplate"], never, false, never>;
|
|
142
142
|
}
|
|
@@ -32,5 +32,5 @@ export declare class TdSeriesTooltipComponent implements OnChanges, OnDestroy {
|
|
|
32
32
|
private _formatter;
|
|
33
33
|
private _removeOption;
|
|
34
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<TdSeriesTooltipComponent, never>;
|
|
35
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TdSeriesTooltipComponent, "td-chart-series-tooltip", never, { "config":
|
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TdSeriesTooltipComponent, "td-chart-series-tooltip", never, { "config": "config"; "formatter": "formatter"; "position": "position"; "backgroundColor": "backgroundColor"; "borderColor": "borderColor"; "borderWidth": "borderWidth"; "padding": "padding"; "textStyle": "textStyle"; "extraCssText": "extraCssText"; }, {}, ["formatterTemplate"], never, false, never>;
|
|
36
36
|
}
|
|
@@ -45,5 +45,5 @@ export declare class TdChartTooltipComponent implements OnChanges, OnDestroy {
|
|
|
45
45
|
private _removeOption;
|
|
46
46
|
private _formatter;
|
|
47
47
|
static ɵfac: i0.ɵɵFactoryDeclaration<TdChartTooltipComponent, never>;
|
|
48
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TdChartTooltipComponent, "td-chart-tooltip", never, { "config":
|
|
48
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TdChartTooltipComponent, "td-chart-tooltip", never, { "config": "config"; "show": "show"; "trigger": "trigger"; "axisPointer": "axisPointer"; "showContent": "showContent"; "alwaysShowContent": "alwaysShowContent"; "triggerOn": "triggerOn"; "showDelay": "showDelay"; "hideDelay": "hideDelay"; "enterable": "enterable"; "renderMode": "renderMode"; "confine": "confine"; "transitionDuration": "transitionDuration"; "position": "position"; "formatter": "formatter"; "backgroundColor": "backgroundColor"; "borderColor": "borderColor"; "borderWidth": "borderWidth"; "padding": "padding"; "textStyle": "textStyle"; "extraCssText": "extraCssText"; }, {}, ["formatterTemplate"], never, false, never>;
|
|
49
49
|
}
|
package/tree/tree.component.d.ts
CHANGED
|
@@ -78,6 +78,6 @@ export declare class TdChartSeriesTreeComponent extends TdSeriesDirective implem
|
|
|
78
78
|
constructor(_optionsService: TdChartOptionsService);
|
|
79
79
|
getConfig(): any;
|
|
80
80
|
static ɵfac: i0.ɵɵFactoryDeclaration<TdChartSeriesTreeComponent, never>;
|
|
81
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TdChartSeriesTreeComponent, "td-chart-series[td-tree]", never, { "config":
|
|
81
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TdChartSeriesTreeComponent, "td-chart-series[td-tree]", never, { "config": "config"; "id": "id"; "name": "name"; "color": "color"; "data": "data"; "animation": "animation"; "animationThreshold": "animationThreshold"; "animationDuration": "animationDuration"; "animationEasing": "animationEasing"; "animationDelay": "animationDelay"; "animationDurationUpdate": "animationDurationUpdate"; "animationEasingUpdate": "animationEasingUpdate"; "animationDelayUpdate": "animationDelayUpdate"; "tooltip": "tooltip"; "zlevel": "zlevel"; "z": "z"; "left": "left"; "top": "top"; "right": "right"; "bottom": "bottom"; "width": "width"; "height": "height"; "layout": "layout"; "orient": "orient"; "symbol": "symbol"; "symbolSize": "symbolSize"; "symbolRotate": "symbolRotate"; "symbolKeepAspect": "symbolKeepAspect"; "roam": "roam"; "expandAndCollapse": "expandAndCollapse"; "initialTreeDepth": "initialTreeDepth"; "itemStyle": "itemStyle"; "label": "label"; "lineStyle": "lineStyle"; "leaves": "leaves"; "emphasis": "emphasis"; }, {}, never, never, false, never>;
|
|
82
82
|
}
|
|
83
83
|
export {};
|
|
@@ -125,10 +125,10 @@ export declare class TdChartSeriesTreemapComponent extends TdSeriesDirective imp
|
|
|
125
125
|
upperLabel?: ITdTreemapUpperLabel;
|
|
126
126
|
breadcrumb?: ITdTreemapBreadcrumb;
|
|
127
127
|
emphasis?: ITdTreemapEmphasis;
|
|
128
|
-
tooltip
|
|
128
|
+
tooltip?: ITdSeriesTooltip;
|
|
129
129
|
constructor(_optionsService: TdChartOptionsService);
|
|
130
130
|
getConfig(): any;
|
|
131
131
|
static ɵfac: i0.ɵɵFactoryDeclaration<TdChartSeriesTreemapComponent, never>;
|
|
132
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TdChartSeriesTreemapComponent, "td-chart-series[td-treemap]", never, { "config":
|
|
132
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TdChartSeriesTreemapComponent, "td-chart-series[td-treemap]", never, { "config": "config"; "id": "id"; "name": "name"; "color": "color"; "data": "data"; "animation": "animation"; "animationThreshold": "animationThreshold"; "animationDuration": "animationDuration"; "animationEasing": "animationEasing"; "animationDelay": "animationDelay"; "animationDurationUpdate": "animationDurationUpdate"; "animationEasingUpdate": "animationEasingUpdate"; "animationDelayUpdate": "animationDelayUpdate"; "tooltip": "tooltip"; "zlevel": "zlevel"; "z": "z"; "left": "left"; "top": "top"; "right": "right"; "bottom": "bottom"; "width": "width"; "height": "height"; "squareRatio": "squareRatio"; "leafDepth": "leafDepth"; "drillDownIcon": "drillDownIcon"; "roam": "roam"; "nodeClick": "nodeClick"; "zoomToNodeRatio": "zoomToNodeRatio"; "levels": "levels"; "silent": "silent"; "visualDimension": "visualDimension"; "visualMin": "visualMin"; "visualMax": "visualMax"; "colorAlpha": "colorAlpha"; "colorSaturation": "colorSaturation"; "colorMappingBy": "colorMappingBy"; "visibleMin": "visibleMin"; "childrenVisibleMin": "childrenVisibleMin"; "itemStyle": "itemStyle"; "label": "label"; "upperLabel": "upperLabel"; "breadcrumb": "breadcrumb"; "emphasis": "emphasis"; }, {}, never, never, false, never>;
|
|
133
133
|
}
|
|
134
134
|
export {};
|
|
@@ -51,5 +51,5 @@ export declare class TdChartSeriesWordcloudComponent extends TdSeriesDirective i
|
|
|
51
51
|
constructor(_optionsService: TdChartOptionsService);
|
|
52
52
|
getConfig(): any;
|
|
53
53
|
static ɵfac: i0.ɵɵFactoryDeclaration<TdChartSeriesWordcloudComponent, never>;
|
|
54
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TdChartSeriesWordcloudComponent, "td-chart-series[td-wordCloud]", never, { "config":
|
|
54
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TdChartSeriesWordcloudComponent, "td-chart-series[td-wordCloud]", 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"; "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"; }, {}, never, never, false, never>;
|
|
55
55
|
}
|