@covalent/echarts 4.0.0-alpha.0 → 4.0.0-beta.4
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 +3 -0
- package/bar/bar.module.d.ts +6 -1
- package/bar/covalent-echarts-bar.d.ts +1 -0
- package/bar/package.json +6 -7
- package/base/axis/axis.component.d.ts +3 -0
- package/base/axis/x-axis.component.d.ts +3 -0
- package/base/axis/y-axis.component.d.ts +3 -0
- package/base/base.module.d.ts +9 -1
- package/base/chart-options.service.d.ts +3 -0
- package/base/chart.component.d.ts +3 -0
- package/base/covalent-echarts-base.d.ts +1 -1
- package/base/dataset/dataset.component.d.ts +3 -0
- package/base/package.json +6 -7
- package/base/series/series.component.d.ts +3 -0
- package/covalent-echarts.d.ts +1 -0
- package/esm2020/bar/bar.component.mjs +136 -0
- package/esm2020/bar/bar.module.mjs +20 -0
- package/esm2020/bar/covalent-echarts-bar.mjs +5 -0
- package/esm2020/bar/index.mjs +2 -0
- package/esm2020/bar/public-api.mjs +3 -0
- package/esm2020/base/axis/axis.component.mjs +127 -0
- package/esm2020/base/axis/axis.interface.mjs +2 -0
- package/esm2020/base/axis/x-axis.component.mjs +55 -0
- package/esm2020/base/axis/y-axis.component.mjs +55 -0
- package/esm2020/base/base.module.mjs +36 -0
- package/esm2020/base/base.types.mjs +2 -0
- package/esm2020/base/chart-options.service.mjs +65 -0
- package/esm2020/base/chart.component.mjs +191 -0
- package/esm2020/base/covalent-echarts-base.mjs +5 -0
- package/esm2020/base/dataset/dataset.component.mjs +52 -0
- package/esm2020/base/index.mjs +2 -0
- package/esm2020/base/public-api.mjs +10 -0
- package/esm2020/base/series/series.component.mjs +91 -0
- package/esm2020/base/series/series.interface.mjs +2 -0
- package/{esm2015/base/themes/teradata-classic.js → esm2020/base/themes/aqua-splash.mjs} +10 -15
- package/esm2020/base/themes/california-coast.mjs +460 -0
- package/esm2020/base/themes/hawaiian-sunrise.mjs +460 -0
- package/{esm2015/base/themes/volcanic-eruption.js → esm2020/base/themes/passion-flower.mjs} +18 -23
- package/esm2020/base/themes/razzleberry-pie.mjs +460 -0
- package/esm2020/base/themes/teradata-classic.mjs +460 -0
- package/{esm2015/base/themes/hawaiian-sunrise.js → esm2020/base/themes/teradata-default.mjs} +18 -23
- package/esm2020/base/themes/urban-sunrise.mjs +460 -0
- package/esm2020/base/themes/volcanic-eruption.mjs +460 -0
- package/esm2020/base/utils/assign-defined.mjs +25 -0
- package/esm2020/base/utils/echarts.mjs +49 -0
- package/esm2020/base/utils/index.mjs +3 -0
- package/esm2020/covalent-echarts.mjs +5 -0
- package/esm2020/graph/covalent-echarts-graph.mjs +5 -0
- package/esm2020/graph/graph.component.mjs +186 -0
- package/esm2020/graph/graph.module.mjs +20 -0
- package/esm2020/graph/index.mjs +2 -0
- package/esm2020/graph/public-api.mjs +3 -0
- package/esm2020/index.mjs +2 -0
- package/esm2020/line/covalent-echarts-line.mjs +5 -0
- package/esm2020/line/index.mjs +2 -0
- package/esm2020/line/line.component.mjs +160 -0
- package/esm2020/line/line.module.mjs +20 -0
- package/esm2020/line/public-api.mjs +3 -0
- package/esm2020/map/covalent-echarts-map.mjs +5 -0
- package/esm2020/map/index.mjs +2 -0
- package/esm2020/map/map.component.mjs +133 -0
- package/esm2020/map/map.module.mjs +20 -0
- package/esm2020/map/public-api.mjs +3 -0
- package/esm2020/pie/covalent-echarts-pie.mjs +5 -0
- package/esm2020/pie/index.mjs +2 -0
- package/esm2020/pie/pie.component.mjs +128 -0
- package/esm2020/pie/pie.module.mjs +20 -0
- package/esm2020/pie/public-api.mjs +3 -0
- package/esm2020/sankey/covalent-echarts-sankey.mjs +5 -0
- package/esm2020/sankey/index.mjs +2 -0
- package/esm2020/sankey/public-api.mjs +3 -0
- package/esm2020/sankey/sankey.component.mjs +118 -0
- package/esm2020/sankey/sankey.module.mjs +20 -0
- package/esm2020/scatter/covalent-echarts-scatter.mjs +5 -0
- package/esm2020/scatter/index.mjs +2 -0
- package/esm2020/scatter/public-api.mjs +3 -0
- package/esm2020/scatter/scatter.component.mjs +145 -0
- package/esm2020/scatter/scatter.module.mjs +20 -0
- package/esm2020/toolbox/covalent-echarts-toolbox.mjs +5 -0
- package/esm2020/toolbox/index.mjs +2 -0
- package/esm2020/toolbox/public-api.mjs +3 -0
- package/esm2020/toolbox/toolbox.component.mjs +151 -0
- package/esm2020/toolbox/toolbox.module.mjs +20 -0
- package/esm2020/tooltip/covalent-echarts-tooltip.mjs +5 -0
- package/esm2020/tooltip/index.mjs +2 -0
- package/esm2020/tooltip/public-api.mjs +4 -0
- package/esm2020/tooltip/series-tooltip.component.mjs +111 -0
- package/esm2020/tooltip/tooltip.component.mjs +165 -0
- package/esm2020/tooltip/tooltip.module.mjs +29 -0
- package/esm2020/tree/covalent-echarts-tree.mjs +5 -0
- package/esm2020/tree/index.mjs +2 -0
- package/esm2020/tree/public-api.mjs +3 -0
- package/esm2020/tree/tree.component.mjs +118 -0
- package/esm2020/tree/tree.module.mjs +20 -0
- package/esm2020/treemap/covalent-echarts-treemap.mjs +5 -0
- package/esm2020/treemap/index.mjs +2 -0
- package/esm2020/treemap/public-api.mjs +3 -0
- package/esm2020/treemap/treemap.component.mjs +150 -0
- package/esm2020/treemap/treemap.module.mjs +20 -0
- package/esm2020/wordcloud/covalent-echarts-wordcloud.mjs +5 -0
- package/esm2020/wordcloud/index.mjs +2 -0
- package/esm2020/wordcloud/public-api.mjs +3 -0
- package/esm2020/wordcloud/wordcloud.component.mjs +93 -0
- package/esm2020/wordcloud/wordcloud.module.mjs +20 -0
- package/fesm2015/covalent-echarts-bar.mjs +164 -0
- package/fesm2015/covalent-echarts-bar.mjs.map +1 -0
- package/fesm2015/covalent-echarts-base.mjs +4864 -0
- package/fesm2015/covalent-echarts-base.mjs.map +1 -0
- package/fesm2015/covalent-echarts-graph.mjs +214 -0
- package/fesm2015/covalent-echarts-graph.mjs.map +1 -0
- package/fesm2015/covalent-echarts-line.mjs +188 -0
- package/fesm2015/covalent-echarts-line.mjs.map +1 -0
- package/fesm2015/covalent-echarts-map.mjs +161 -0
- package/fesm2015/{covalent-echarts-map.js.map → covalent-echarts-map.mjs.map} +1 -1
- package/fesm2015/covalent-echarts-pie.mjs +156 -0
- package/fesm2015/{covalent-echarts-pie.js.map → covalent-echarts-pie.mjs.map} +1 -1
- package/fesm2015/covalent-echarts-sankey.mjs +146 -0
- package/fesm2015/covalent-echarts-sankey.mjs.map +1 -0
- package/fesm2015/covalent-echarts-scatter.mjs +173 -0
- package/fesm2015/covalent-echarts-scatter.mjs.map +1 -0
- package/fesm2015/covalent-echarts-toolbox.mjs +184 -0
- package/fesm2015/covalent-echarts-toolbox.mjs.map +1 -0
- package/fesm2015/covalent-echarts-tooltip.mjs +330 -0
- package/fesm2015/covalent-echarts-tooltip.mjs.map +1 -0
- package/fesm2015/covalent-echarts-tree.mjs +146 -0
- package/fesm2015/covalent-echarts-tree.mjs.map +1 -0
- package/fesm2015/covalent-echarts-treemap.mjs +178 -0
- package/fesm2015/covalent-echarts-treemap.mjs.map +1 -0
- package/fesm2015/covalent-echarts-wordcloud.mjs +121 -0
- package/fesm2015/covalent-echarts-wordcloud.mjs.map +1 -0
- package/fesm2015/covalent-echarts.mjs +4 -0
- package/fesm2015/covalent-echarts.mjs.map +1 -0
- package/fesm2020/covalent-echarts-bar.mjs +160 -0
- package/{fesm2015/covalent-echarts-bar.js.map → fesm2020/covalent-echarts-bar.mjs.map} +1 -1
- package/{fesm2015/covalent-echarts-base.js → fesm2020/covalent-echarts-base.mjs} +218 -769
- package/fesm2020/covalent-echarts-base.mjs.map +1 -0
- package/fesm2020/covalent-echarts-graph.mjs +210 -0
- package/fesm2020/covalent-echarts-graph.mjs.map +1 -0
- package/fesm2020/covalent-echarts-line.mjs +184 -0
- package/fesm2020/covalent-echarts-line.mjs.map +1 -0
- package/fesm2020/covalent-echarts-map.mjs +157 -0
- package/fesm2020/covalent-echarts-map.mjs.map +1 -0
- package/fesm2020/covalent-echarts-pie.mjs +152 -0
- package/fesm2020/covalent-echarts-pie.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/fesm2020/covalent-echarts-toolbox.mjs +175 -0
- package/fesm2020/covalent-echarts-toolbox.mjs.map +1 -0
- package/fesm2020/covalent-echarts-tooltip.mjs +302 -0
- package/fesm2020/covalent-echarts-tooltip.mjs.map +1 -0
- package/fesm2020/covalent-echarts-tree.mjs +142 -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/covalent-echarts-graph.d.ts +1 -0
- package/graph/graph.component.d.ts +3 -0
- package/graph/graph.module.d.ts +6 -1
- package/graph/package.json +6 -7
- package/line/covalent-echarts-line.d.ts +1 -0
- package/line/line.component.d.ts +3 -0
- package/line/line.module.d.ts +6 -1
- package/line/package.json +6 -7
- package/map/covalent-echarts-map.d.ts +1 -0
- package/map/map.component.d.ts +3 -0
- package/map/map.module.d.ts +6 -1
- package/map/package.json +6 -7
- package/package.json +134 -15
- package/pie/covalent-echarts-pie.d.ts +1 -0
- package/pie/package.json +6 -7
- package/pie/pie.component.d.ts +3 -0
- package/pie/pie.module.d.ts +6 -1
- package/sankey/covalent-echarts-sankey.d.ts +1 -0
- package/sankey/package.json +6 -7
- package/sankey/sankey.component.d.ts +3 -0
- package/sankey/sankey.module.d.ts +6 -1
- package/scatter/covalent-echarts-scatter.d.ts +1 -0
- package/scatter/package.json +6 -7
- package/scatter/scatter.component.d.ts +3 -0
- package/scatter/scatter.module.d.ts +6 -1
- package/toolbox/covalent-echarts-toolbox.d.ts +1 -0
- package/toolbox/package.json +6 -7
- package/toolbox/toolbox.component.d.ts +5 -0
- package/toolbox/toolbox.module.d.ts +6 -1
- package/tooltip/covalent-echarts-tooltip.d.ts +1 -0
- package/tooltip/package.json +6 -7
- package/tooltip/series-tooltip.component.d.ts +3 -0
- package/tooltip/tooltip.component.d.ts +5 -0
- package/tooltip/tooltip.module.d.ts +7 -1
- package/tree/covalent-echarts-tree.d.ts +1 -0
- package/tree/package.json +6 -7
- package/tree/tree.component.d.ts +3 -0
- package/tree/tree.module.d.ts +6 -1
- package/treemap/covalent-echarts-treemap.d.ts +1 -0
- package/treemap/package.json +6 -7
- package/treemap/treemap.component.d.ts +3 -0
- package/treemap/treemap.module.d.ts +6 -1
- package/wordcloud/covalent-echarts-wordcloud.d.ts +1 -0
- package/wordcloud/package.json +6 -7
- package/wordcloud/wordcloud.component.d.ts +3 -0
- package/wordcloud/wordcloud.module.d.ts +6 -1
- package/bar/covalent-echarts-bar.metadata.json +0 -1
- package/base/covalent-echarts-base.metadata.json +0 -1
- package/bundles/covalent-echarts-bar.umd.js +0 -588
- package/bundles/covalent-echarts-bar.umd.js.map +0 -1
- package/bundles/covalent-echarts-bar.umd.min.js +0 -16
- package/bundles/covalent-echarts-bar.umd.min.js.map +0 -1
- package/bundles/covalent-echarts-base.umd.js +0 -5750
- package/bundles/covalent-echarts-base.umd.js.map +0 -1
- package/bundles/covalent-echarts-base.umd.min.js +0 -16
- package/bundles/covalent-echarts-base.umd.min.js.map +0 -1
- package/bundles/covalent-echarts-graph.umd.js +0 -745
- package/bundles/covalent-echarts-graph.umd.js.map +0 -1
- package/bundles/covalent-echarts-graph.umd.min.js +0 -16
- package/bundles/covalent-echarts-graph.umd.min.js.map +0 -1
- package/bundles/covalent-echarts-line.umd.js +0 -638
- package/bundles/covalent-echarts-line.umd.js.map +0 -1
- package/bundles/covalent-echarts-line.umd.min.js +0 -16
- package/bundles/covalent-echarts-line.umd.min.js.map +0 -1
- package/bundles/covalent-echarts-map.umd.js +0 -600
- package/bundles/covalent-echarts-map.umd.js.map +0 -1
- package/bundles/covalent-echarts-map.umd.min.js +0 -16
- package/bundles/covalent-echarts-map.umd.min.js.map +0 -1
- package/bundles/covalent-echarts-pie.umd.js +0 -574
- package/bundles/covalent-echarts-pie.umd.js.map +0 -1
- package/bundles/covalent-echarts-pie.umd.min.js +0 -16
- package/bundles/covalent-echarts-pie.umd.min.js.map +0 -1
- package/bundles/covalent-echarts-sankey.umd.js +0 -570
- package/bundles/covalent-echarts-sankey.umd.js.map +0 -1
- package/bundles/covalent-echarts-sankey.umd.min.js +0 -16
- package/bundles/covalent-echarts-sankey.umd.min.js.map +0 -1
- package/bundles/covalent-echarts-scatter.umd.js +0 -610
- package/bundles/covalent-echarts-scatter.umd.js.map +0 -1
- package/bundles/covalent-echarts-scatter.umd.min.js +0 -16
- package/bundles/covalent-echarts-scatter.umd.min.js.map +0 -1
- package/bundles/covalent-echarts-toolbox.umd.js +0 -460
- package/bundles/covalent-echarts-toolbox.umd.js.map +0 -1
- package/bundles/covalent-echarts-toolbox.umd.min.js +0 -2
- package/bundles/covalent-echarts-toolbox.umd.min.js.map +0 -1
- package/bundles/covalent-echarts-tooltip.umd.js +0 -476
- package/bundles/covalent-echarts-tooltip.umd.js.map +0 -1
- package/bundles/covalent-echarts-tooltip.umd.min.js +0 -2
- package/bundles/covalent-echarts-tooltip.umd.min.js.map +0 -1
- package/bundles/covalent-echarts-tree.umd.js +0 -584
- package/bundles/covalent-echarts-tree.umd.js.map +0 -1
- package/bundles/covalent-echarts-tree.umd.min.js +0 -16
- package/bundles/covalent-echarts-tree.umd.min.js.map +0 -1
- package/bundles/covalent-echarts-treemap.umd.js +0 -728
- package/bundles/covalent-echarts-treemap.umd.js.map +0 -1
- package/bundles/covalent-echarts-treemap.umd.min.js +0 -16
- package/bundles/covalent-echarts-treemap.umd.min.js.map +0 -1
- package/bundles/covalent-echarts-wordcloud.umd.js +0 -521
- package/bundles/covalent-echarts-wordcloud.umd.js.map +0 -1
- package/bundles/covalent-echarts-wordcloud.umd.min.js +0 -16
- package/bundles/covalent-echarts-wordcloud.umd.min.js.map +0 -1
- package/bundles/covalent-echarts.umd.js +0 -9
- package/bundles/covalent-echarts.umd.js.map +0 -1
- package/bundles/covalent-echarts.umd.min.js +0 -2
- package/bundles/covalent-echarts.umd.min.js.map +0 -1
- package/covalent-echarts.metadata.json +0 -1
- package/esm2015/bar/bar.component.js +0 -241
- package/esm2015/bar/bar.module.js +0 -21
- package/esm2015/bar/covalent-echarts-bar.js +0 -10
- package/esm2015/bar/index.js +0 -7
- package/esm2015/bar/public-api.js +0 -8
- package/esm2015/base/axis/axis.component.js +0 -209
- package/esm2015/base/axis/axis.interface.js +0 -324
- package/esm2015/base/axis/x-axis.component.js +0 -67
- package/esm2015/base/axis/y-axis.component.js +0 -67
- package/esm2015/base/base.module.js +0 -31
- package/esm2015/base/base.types.js +0 -278
- package/esm2015/base/chart-options.service.js +0 -115
- package/esm2015/base/chart.component.js +0 -354
- package/esm2015/base/covalent-echarts-base.js +0 -11
- package/esm2015/base/dataset/dataset.component.js +0 -93
- package/esm2015/base/index.js +0 -7
- package/esm2015/base/public-api.js +0 -15
- package/esm2015/base/series/series.component.js +0 -187
- package/esm2015/base/series/series.interface.js +0 -178
- package/esm2015/base/themes/aqua-splash.js +0 -465
- package/esm2015/base/themes/california-coast.js +0 -465
- package/esm2015/base/themes/passion-flower.js +0 -465
- package/esm2015/base/themes/razzleberry-pie.js +0 -465
- package/esm2015/base/themes/teradata-default.js +0 -465
- package/esm2015/base/themes/urban-sunrise.js +0 -465
- package/esm2015/base/utils/assign-defined.js +0 -37
- package/esm2015/base/utils/echarts.js +0 -60
- package/esm2015/base/utils/index.js +0 -8
- package/esm2015/covalent-echarts.js +0 -10
- package/esm2015/graph/covalent-echarts-graph.js +0 -10
- package/esm2015/graph/graph.component.js +0 -398
- package/esm2015/graph/graph.module.js +0 -21
- package/esm2015/graph/index.js +0 -7
- package/esm2015/graph/public-api.js +0 -8
- package/esm2015/index.js +0 -7
- package/esm2015/line/covalent-echarts-line.js +0 -10
- package/esm2015/line/index.js +0 -7
- package/esm2015/line/line.component.js +0 -291
- package/esm2015/line/line.module.js +0 -21
- package/esm2015/line/public-api.js +0 -8
- package/esm2015/map/covalent-echarts-map.js +0 -10
- package/esm2015/map/index.js +0 -7
- package/esm2015/map/map.component.js +0 -253
- package/esm2015/map/map.module.js +0 -21
- package/esm2015/map/public-api.js +0 -8
- package/esm2015/pie/covalent-echarts-pie.js +0 -10
- package/esm2015/pie/index.js +0 -7
- package/esm2015/pie/pie.component.js +0 -227
- package/esm2015/pie/pie.module.js +0 -21
- package/esm2015/pie/public-api.js +0 -8
- package/esm2015/sankey/covalent-echarts-sankey.js +0 -10
- package/esm2015/sankey/index.js +0 -7
- package/esm2015/sankey/public-api.js +0 -8
- package/esm2015/sankey/sankey.component.js +0 -223
- package/esm2015/sankey/sankey.module.js +0 -21
- package/esm2015/scatter/covalent-echarts-scatter.js +0 -10
- package/esm2015/scatter/index.js +0 -7
- package/esm2015/scatter/public-api.js +0 -8
- package/esm2015/scatter/scatter.component.js +0 -263
- package/esm2015/scatter/scatter.module.js +0 -21
- package/esm2015/toolbox/covalent-echarts-toolbox.js +0 -10
- package/esm2015/toolbox/index.js +0 -7
- package/esm2015/toolbox/public-api.js +0 -8
- package/esm2015/toolbox/toolbox.component.js +0 -405
- package/esm2015/toolbox/toolbox.module.js +0 -21
- package/esm2015/tooltip/covalent-echarts-tooltip.js +0 -10
- package/esm2015/tooltip/index.js +0 -7
- package/esm2015/tooltip/public-api.js +0 -9
- package/esm2015/tooltip/series-tooltip.component.js +0 -170
- package/esm2015/tooltip/tooltip.component.js +0 -246
- package/esm2015/tooltip/tooltip.module.js +0 -26
- package/esm2015/tree/covalent-echarts-tree.js +0 -10
- package/esm2015/tree/index.js +0 -7
- package/esm2015/tree/public-api.js +0 -8
- package/esm2015/tree/tree.component.js +0 -237
- package/esm2015/tree/tree.module.js +0 -21
- package/esm2015/treemap/covalent-echarts-treemap.js +0 -10
- package/esm2015/treemap/index.js +0 -7
- package/esm2015/treemap/public-api.js +0 -8
- package/esm2015/treemap/treemap.component.js +0 -380
- package/esm2015/treemap/treemap.module.js +0 -21
- package/esm2015/wordcloud/covalent-echarts-wordcloud.js +0 -10
- package/esm2015/wordcloud/index.js +0 -7
- package/esm2015/wordcloud/public-api.js +0 -8
- package/esm2015/wordcloud/wordcloud.component.js +0 -174
- package/esm2015/wordcloud/wordcloud.module.js +0 -21
- package/fesm2015/covalent-echarts-bar.js +0 -281
- package/fesm2015/covalent-echarts-base.js.map +0 -1
- package/fesm2015/covalent-echarts-graph.js +0 -438
- package/fesm2015/covalent-echarts-graph.js.map +0 -1
- package/fesm2015/covalent-echarts-line.js +0 -331
- package/fesm2015/covalent-echarts-line.js.map +0 -1
- package/fesm2015/covalent-echarts-map.js +0 -293
- package/fesm2015/covalent-echarts-pie.js +0 -267
- package/fesm2015/covalent-echarts-sankey.js +0 -263
- package/fesm2015/covalent-echarts-sankey.js.map +0 -1
- package/fesm2015/covalent-echarts-scatter.js +0 -303
- package/fesm2015/covalent-echarts-scatter.js.map +0 -1
- package/fesm2015/covalent-echarts-toolbox.js +0 -445
- package/fesm2015/covalent-echarts-toolbox.js.map +0 -1
- package/fesm2015/covalent-echarts-tooltip.js +0 -457
- package/fesm2015/covalent-echarts-tooltip.js.map +0 -1
- package/fesm2015/covalent-echarts-tree.js +0 -277
- package/fesm2015/covalent-echarts-tree.js.map +0 -1
- package/fesm2015/covalent-echarts-treemap.js +0 -420
- package/fesm2015/covalent-echarts-treemap.js.map +0 -1
- package/fesm2015/covalent-echarts-wordcloud.js +0 -214
- package/fesm2015/covalent-echarts-wordcloud.js.map +0 -1
- package/fesm2015/covalent-echarts.js +0 -12
- package/fesm2015/covalent-echarts.js.map +0 -1
- package/graph/covalent-echarts-graph.metadata.json +0 -1
- package/line/covalent-echarts-line.metadata.json +0 -1
- package/map/covalent-echarts-map.metadata.json +0 -1
- package/pie/covalent-echarts-pie.metadata.json +0 -1
- package/sankey/covalent-echarts-sankey.metadata.json +0 -1
- package/scatter/covalent-echarts-scatter.metadata.json +0 -1
- package/toolbox/covalent-echarts-toolbox.metadata.json +0 -1
- package/tooltip/covalent-echarts-tooltip.metadata.json +0 -1
- package/tree/covalent-echarts-tree.metadata.json +0 -1
- package/treemap/covalent-echarts-treemap.metadata.json +0 -1
- package/wordcloud/covalent-echarts-wordcloud.metadata.json +0 -1
package/map/map.module.d.ts
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
import { Type } from '@angular/core';
|
|
2
|
-
import
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "./map.component";
|
|
4
|
+
import * as i2 from "@angular/common";
|
|
3
5
|
export declare const MAP_MODULE_COMPONENTS: Type<any>[];
|
|
4
6
|
export declare class CovalentMapEchartsModule {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CovalentMapEchartsModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CovalentMapEchartsModule, [typeof i1.TdChartSeriesMapComponent], [typeof i2.CommonModule], [typeof i1.TdChartSeriesMapComponent]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<CovalentMapEchartsModule>;
|
|
5
10
|
}
|
package/map/package.json
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"fesm2015": "../fesm2015/covalent-echarts-map.
|
|
2
|
+
"module": "../fesm2015/covalent-echarts-map.mjs",
|
|
3
|
+
"es2020": "../fesm2020/covalent-echarts-map.mjs",
|
|
4
|
+
"esm2020": "../esm2020/map/covalent-echarts-map.mjs",
|
|
5
|
+
"fesm2020": "../fesm2020/covalent-echarts-map.mjs",
|
|
6
|
+
"fesm2015": "../fesm2015/covalent-echarts-map.mjs",
|
|
7
7
|
"typings": "covalent-echarts-map.d.ts",
|
|
8
|
-
"metadata": "covalent-echarts-map.metadata.json",
|
|
9
8
|
"sideEffects": false,
|
|
10
9
|
"name": "@covalent/echarts/map"
|
|
11
|
-
}
|
|
10
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@covalent/echarts",
|
|
3
|
-
"version": "4.0.0-
|
|
3
|
+
"version": "4.0.0-beta.4",
|
|
4
4
|
"description": "Teradata UI Platform Echarts Module",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"angular",
|
|
@@ -27,21 +27,140 @@
|
|
|
27
27
|
"Jeremy Smartt <jeremy.smartt@teradata.com>",
|
|
28
28
|
"Steven Ov <steven.ov@teradata.com>"
|
|
29
29
|
],
|
|
30
|
-
"dependencies": {
|
|
31
|
-
"echarts-wordcloud": "^1.1.3",
|
|
32
|
-
"tslib": "^2.0.0"
|
|
33
|
-
},
|
|
34
30
|
"peerDependencies": {
|
|
31
|
+
"echarts-wordcloud": "^1.1.3",
|
|
35
32
|
"echarts": "^4.2.1",
|
|
36
|
-
"@angular/common": "^
|
|
37
|
-
"@angular/core": "^
|
|
33
|
+
"@angular/common": "^12.0.0-0 || ^13.0.0-0",
|
|
34
|
+
"@angular/core": "^12.0.0-0 || ^13.0.0-0"
|
|
38
35
|
},
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"fesm2015": "fesm2015/covalent-echarts.
|
|
36
|
+
"module": "fesm2015/covalent-echarts.mjs",
|
|
37
|
+
"es2020": "fesm2020/covalent-echarts.mjs",
|
|
38
|
+
"esm2020": "esm2020/covalent-echarts.mjs",
|
|
39
|
+
"fesm2020": "fesm2020/covalent-echarts.mjs",
|
|
40
|
+
"fesm2015": "fesm2015/covalent-echarts.mjs",
|
|
44
41
|
"typings": "covalent-echarts.d.ts",
|
|
45
|
-
"
|
|
46
|
-
|
|
47
|
-
|
|
42
|
+
"exports": {
|
|
43
|
+
"./package.json": {
|
|
44
|
+
"default": "./package.json"
|
|
45
|
+
},
|
|
46
|
+
".": {
|
|
47
|
+
"types": "./covalent-echarts.d.ts",
|
|
48
|
+
"esm2020": "./esm2020/covalent-echarts.mjs",
|
|
49
|
+
"es2020": "./fesm2020/covalent-echarts.mjs",
|
|
50
|
+
"es2015": "./fesm2015/covalent-echarts.mjs",
|
|
51
|
+
"node": "./fesm2015/covalent-echarts.mjs",
|
|
52
|
+
"default": "./fesm2020/covalent-echarts.mjs"
|
|
53
|
+
},
|
|
54
|
+
"./bar": {
|
|
55
|
+
"types": "./bar/covalent-echarts-bar.d.ts",
|
|
56
|
+
"esm2020": "./esm2020/bar/covalent-echarts-bar.mjs",
|
|
57
|
+
"es2020": "./fesm2020/covalent-echarts-bar.mjs",
|
|
58
|
+
"es2015": "./fesm2015/covalent-echarts-bar.mjs",
|
|
59
|
+
"node": "./fesm2015/covalent-echarts-bar.mjs",
|
|
60
|
+
"default": "./fesm2020/covalent-echarts-bar.mjs"
|
|
61
|
+
},
|
|
62
|
+
"./base": {
|
|
63
|
+
"types": "./base/covalent-echarts-base.d.ts",
|
|
64
|
+
"esm2020": "./esm2020/base/covalent-echarts-base.mjs",
|
|
65
|
+
"es2020": "./fesm2020/covalent-echarts-base.mjs",
|
|
66
|
+
"es2015": "./fesm2015/covalent-echarts-base.mjs",
|
|
67
|
+
"node": "./fesm2015/covalent-echarts-base.mjs",
|
|
68
|
+
"default": "./fesm2020/covalent-echarts-base.mjs"
|
|
69
|
+
},
|
|
70
|
+
"./graph": {
|
|
71
|
+
"types": "./graph/covalent-echarts-graph.d.ts",
|
|
72
|
+
"esm2020": "./esm2020/graph/covalent-echarts-graph.mjs",
|
|
73
|
+
"es2020": "./fesm2020/covalent-echarts-graph.mjs",
|
|
74
|
+
"es2015": "./fesm2015/covalent-echarts-graph.mjs",
|
|
75
|
+
"node": "./fesm2015/covalent-echarts-graph.mjs",
|
|
76
|
+
"default": "./fesm2020/covalent-echarts-graph.mjs"
|
|
77
|
+
},
|
|
78
|
+
"./line": {
|
|
79
|
+
"types": "./line/covalent-echarts-line.d.ts",
|
|
80
|
+
"esm2020": "./esm2020/line/covalent-echarts-line.mjs",
|
|
81
|
+
"es2020": "./fesm2020/covalent-echarts-line.mjs",
|
|
82
|
+
"es2015": "./fesm2015/covalent-echarts-line.mjs",
|
|
83
|
+
"node": "./fesm2015/covalent-echarts-line.mjs",
|
|
84
|
+
"default": "./fesm2020/covalent-echarts-line.mjs"
|
|
85
|
+
},
|
|
86
|
+
"./map": {
|
|
87
|
+
"types": "./map/covalent-echarts-map.d.ts",
|
|
88
|
+
"esm2020": "./esm2020/map/covalent-echarts-map.mjs",
|
|
89
|
+
"es2020": "./fesm2020/covalent-echarts-map.mjs",
|
|
90
|
+
"es2015": "./fesm2015/covalent-echarts-map.mjs",
|
|
91
|
+
"node": "./fesm2015/covalent-echarts-map.mjs",
|
|
92
|
+
"default": "./fesm2020/covalent-echarts-map.mjs"
|
|
93
|
+
},
|
|
94
|
+
"./pie": {
|
|
95
|
+
"types": "./pie/covalent-echarts-pie.d.ts",
|
|
96
|
+
"esm2020": "./esm2020/pie/covalent-echarts-pie.mjs",
|
|
97
|
+
"es2020": "./fesm2020/covalent-echarts-pie.mjs",
|
|
98
|
+
"es2015": "./fesm2015/covalent-echarts-pie.mjs",
|
|
99
|
+
"node": "./fesm2015/covalent-echarts-pie.mjs",
|
|
100
|
+
"default": "./fesm2020/covalent-echarts-pie.mjs"
|
|
101
|
+
},
|
|
102
|
+
"./sankey": {
|
|
103
|
+
"types": "./sankey/covalent-echarts-sankey.d.ts",
|
|
104
|
+
"esm2020": "./esm2020/sankey/covalent-echarts-sankey.mjs",
|
|
105
|
+
"es2020": "./fesm2020/covalent-echarts-sankey.mjs",
|
|
106
|
+
"es2015": "./fesm2015/covalent-echarts-sankey.mjs",
|
|
107
|
+
"node": "./fesm2015/covalent-echarts-sankey.mjs",
|
|
108
|
+
"default": "./fesm2020/covalent-echarts-sankey.mjs"
|
|
109
|
+
},
|
|
110
|
+
"./scatter": {
|
|
111
|
+
"types": "./scatter/covalent-echarts-scatter.d.ts",
|
|
112
|
+
"esm2020": "./esm2020/scatter/covalent-echarts-scatter.mjs",
|
|
113
|
+
"es2020": "./fesm2020/covalent-echarts-scatter.mjs",
|
|
114
|
+
"es2015": "./fesm2015/covalent-echarts-scatter.mjs",
|
|
115
|
+
"node": "./fesm2015/covalent-echarts-scatter.mjs",
|
|
116
|
+
"default": "./fesm2020/covalent-echarts-scatter.mjs"
|
|
117
|
+
},
|
|
118
|
+
"./toolbox": {
|
|
119
|
+
"types": "./toolbox/covalent-echarts-toolbox.d.ts",
|
|
120
|
+
"esm2020": "./esm2020/toolbox/covalent-echarts-toolbox.mjs",
|
|
121
|
+
"es2020": "./fesm2020/covalent-echarts-toolbox.mjs",
|
|
122
|
+
"es2015": "./fesm2015/covalent-echarts-toolbox.mjs",
|
|
123
|
+
"node": "./fesm2015/covalent-echarts-toolbox.mjs",
|
|
124
|
+
"default": "./fesm2020/covalent-echarts-toolbox.mjs"
|
|
125
|
+
},
|
|
126
|
+
"./tooltip": {
|
|
127
|
+
"types": "./tooltip/covalent-echarts-tooltip.d.ts",
|
|
128
|
+
"esm2020": "./esm2020/tooltip/covalent-echarts-tooltip.mjs",
|
|
129
|
+
"es2020": "./fesm2020/covalent-echarts-tooltip.mjs",
|
|
130
|
+
"es2015": "./fesm2015/covalent-echarts-tooltip.mjs",
|
|
131
|
+
"node": "./fesm2015/covalent-echarts-tooltip.mjs",
|
|
132
|
+
"default": "./fesm2020/covalent-echarts-tooltip.mjs"
|
|
133
|
+
},
|
|
134
|
+
"./tree": {
|
|
135
|
+
"types": "./tree/covalent-echarts-tree.d.ts",
|
|
136
|
+
"esm2020": "./esm2020/tree/covalent-echarts-tree.mjs",
|
|
137
|
+
"es2020": "./fesm2020/covalent-echarts-tree.mjs",
|
|
138
|
+
"es2015": "./fesm2015/covalent-echarts-tree.mjs",
|
|
139
|
+
"node": "./fesm2015/covalent-echarts-tree.mjs",
|
|
140
|
+
"default": "./fesm2020/covalent-echarts-tree.mjs"
|
|
141
|
+
},
|
|
142
|
+
"./treemap": {
|
|
143
|
+
"types": "./treemap/covalent-echarts-treemap.d.ts",
|
|
144
|
+
"esm2020": "./esm2020/treemap/covalent-echarts-treemap.mjs",
|
|
145
|
+
"es2020": "./fesm2020/covalent-echarts-treemap.mjs",
|
|
146
|
+
"es2015": "./fesm2015/covalent-echarts-treemap.mjs",
|
|
147
|
+
"node": "./fesm2015/covalent-echarts-treemap.mjs",
|
|
148
|
+
"default": "./fesm2020/covalent-echarts-treemap.mjs"
|
|
149
|
+
},
|
|
150
|
+
"./wordcloud": {
|
|
151
|
+
"types": "./wordcloud/covalent-echarts-wordcloud.d.ts",
|
|
152
|
+
"esm2020": "./esm2020/wordcloud/covalent-echarts-wordcloud.mjs",
|
|
153
|
+
"es2020": "./fesm2020/covalent-echarts-wordcloud.mjs",
|
|
154
|
+
"es2015": "./fesm2015/covalent-echarts-wordcloud.mjs",
|
|
155
|
+
"node": "./fesm2015/covalent-echarts-wordcloud.mjs",
|
|
156
|
+
"default": "./fesm2020/covalent-echarts-wordcloud.mjs"
|
|
157
|
+
}
|
|
158
|
+
},
|
|
159
|
+
"sideEffects": false,
|
|
160
|
+
"dependencies": {
|
|
161
|
+
"tslib": "^2.3.0"
|
|
162
|
+
},
|
|
163
|
+
"scripts": {
|
|
164
|
+
"prepublishOnly": "node --eval \"console.error('ERROR: Trying to publish a package that has been compiled by Ivy in full compilation mode. This is not allowed.\\nPlease delete and rebuild the package with Ivy partial compilation mode, before attempting to publish.\\n')\" && exit 1"
|
|
165
|
+
}
|
|
166
|
+
}
|
package/pie/package.json
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"fesm2015": "../fesm2015/covalent-echarts-pie.
|
|
2
|
+
"module": "../fesm2015/covalent-echarts-pie.mjs",
|
|
3
|
+
"es2020": "../fesm2020/covalent-echarts-pie.mjs",
|
|
4
|
+
"esm2020": "../esm2020/pie/covalent-echarts-pie.mjs",
|
|
5
|
+
"fesm2020": "../fesm2020/covalent-echarts-pie.mjs",
|
|
6
|
+
"fesm2015": "../fesm2015/covalent-echarts-pie.mjs",
|
|
7
7
|
"typings": "covalent-echarts-pie.d.ts",
|
|
8
|
-
"metadata": "covalent-echarts-pie.metadata.json",
|
|
9
8
|
"sideEffects": false,
|
|
10
9
|
"name": "@covalent/echarts/pie"
|
|
11
|
-
}
|
|
10
|
+
}
|
package/pie/pie.component.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { TdChartOptionsService, ITdItemStyle, ITdEmphasis, TdSeriesLayoutBy, ITdMarkPoint, ITdMarkLine, ITdMarkArea, ITdSeries, ITdLabel, ITdLabelLine, TdSeriesDirective } from '@covalent/echarts/base';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export interface ITdPieSeries extends ITdSeries {
|
|
3
4
|
legendHoverLink?: boolean;
|
|
4
5
|
hoverAnimation?: boolean;
|
|
@@ -58,4 +59,6 @@ export declare class TdChartSeriesPieComponent extends TdSeriesDirective impleme
|
|
|
58
59
|
radius: number | string | any[];
|
|
59
60
|
constructor(_optionsService: TdChartOptionsService);
|
|
60
61
|
getConfig(): any;
|
|
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>;
|
|
61
64
|
}
|
package/pie/pie.module.d.ts
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
import { Type } from '@angular/core';
|
|
2
|
-
import
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "./pie.component";
|
|
4
|
+
import * as i2 from "@angular/common";
|
|
3
5
|
export declare const PIE_MODULE_COMPONENTS: Type<any>[];
|
|
4
6
|
export declare class CovalentPieEchartsModule {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CovalentPieEchartsModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CovalentPieEchartsModule, [typeof i1.TdChartSeriesPieComponent], [typeof i2.CommonModule], [typeof i1.TdChartSeriesPieComponent]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<CovalentPieEchartsModule>;
|
|
5
10
|
}
|
package/sankey/package.json
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"fesm2015": "../fesm2015/covalent-echarts-sankey.
|
|
2
|
+
"module": "../fesm2015/covalent-echarts-sankey.mjs",
|
|
3
|
+
"es2020": "../fesm2020/covalent-echarts-sankey.mjs",
|
|
4
|
+
"esm2020": "../esm2020/sankey/covalent-echarts-sankey.mjs",
|
|
5
|
+
"fesm2020": "../fesm2020/covalent-echarts-sankey.mjs",
|
|
6
|
+
"fesm2015": "../fesm2015/covalent-echarts-sankey.mjs",
|
|
7
7
|
"typings": "covalent-echarts-sankey.d.ts",
|
|
8
|
-
"metadata": "covalent-echarts-sankey.metadata.json",
|
|
9
8
|
"sideEffects": false,
|
|
10
9
|
"name": "@covalent/echarts/sankey"
|
|
11
|
-
}
|
|
10
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { TdChartOptionsService, ITdLabel, ITdItemStyle, ITdEmphasis, ITdSeries, TdSeriesDirective, ITdShadow, ITdLineCurveStyle } from '@covalent/echarts/base';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare type TdSankeyOrient = 'horizontal' | 'vertical';
|
|
3
4
|
export declare type TdSankeyFocusNodeAdjacency = boolean | 'allEdges' | 'outEdges' | 'inEdges';
|
|
4
5
|
export interface ITdSankeyEmphasisLineStyle extends ITdShadow {
|
|
@@ -59,4 +60,6 @@ export declare class TdChartSeriesSankeyComponent extends TdSeriesDirective impl
|
|
|
59
60
|
silent: boolean;
|
|
60
61
|
constructor(_optionsService: TdChartOptionsService);
|
|
61
62
|
getConfig(): any;
|
|
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>;
|
|
62
65
|
}
|
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
import { Type } from '@angular/core';
|
|
2
|
-
import
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "./sankey.component";
|
|
4
|
+
import * as i2 from "@angular/common";
|
|
3
5
|
export declare const SANKEY_MODULE_COMPONENTS: Type<any>[];
|
|
4
6
|
export declare class CovalentSankeyEchartsModule {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CovalentSankeyEchartsModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CovalentSankeyEchartsModule, [typeof i1.TdChartSeriesSankeyComponent], [typeof i2.CommonModule], [typeof i1.TdChartSeriesSankeyComponent]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<CovalentSankeyEchartsModule>;
|
|
5
10
|
}
|
package/scatter/package.json
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"fesm2015": "../fesm2015/covalent-echarts-scatter.
|
|
2
|
+
"module": "../fesm2015/covalent-echarts-scatter.mjs",
|
|
3
|
+
"es2020": "../fesm2020/covalent-echarts-scatter.mjs",
|
|
4
|
+
"esm2020": "../esm2020/scatter/covalent-echarts-scatter.mjs",
|
|
5
|
+
"fesm2020": "../fesm2020/covalent-echarts-scatter.mjs",
|
|
6
|
+
"fesm2015": "../fesm2015/covalent-echarts-scatter.mjs",
|
|
7
7
|
"typings": "covalent-echarts-scatter.d.ts",
|
|
8
|
-
"metadata": "covalent-echarts-scatter.metadata.json",
|
|
9
8
|
"sideEffects": false,
|
|
10
9
|
"name": "@covalent/echarts/scatter"
|
|
11
|
-
}
|
|
10
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { TdChartOptionsService, TdCoordinateSystem, TdMarkPointSymbol, ITdMarkPoint, ITdItemStyle, ITdLabel, ITdEmphasis, TdSeriesLayoutBy, ITdMarkLine, ITdMarkArea, TdSeriesDirective, ITdSeries } from '@covalent/echarts/base';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export interface ITdScatterSeries extends ITdSeries {
|
|
3
4
|
coordinateSystem?: TdCoordinateSystem;
|
|
4
5
|
xAxisIndex?: number;
|
|
@@ -70,4 +71,6 @@ export declare class TdChartSeriesScatterComponent extends TdSeriesDirective imp
|
|
|
70
71
|
silent: boolean;
|
|
71
72
|
constructor(_optionsService: TdChartOptionsService);
|
|
72
73
|
getConfig(): any;
|
|
74
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TdChartSeriesScatterComponent, never>;
|
|
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>;
|
|
73
76
|
}
|
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
import { Type } from '@angular/core';
|
|
2
|
-
import
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "./scatter.component";
|
|
4
|
+
import * as i2 from "@angular/common";
|
|
3
5
|
export declare const SCATTER_MODULE_COMPONENTS: Type<any>[];
|
|
4
6
|
export declare class CovalentScatterEchartsModule {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CovalentScatterEchartsModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CovalentScatterEchartsModule, [typeof i1.TdChartSeriesScatterComponent], [typeof i2.CommonModule], [typeof i1.TdChartSeriesScatterComponent]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<CovalentScatterEchartsModule>;
|
|
5
10
|
}
|
package/toolbox/package.json
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"fesm2015": "../fesm2015/covalent-echarts-toolbox.
|
|
2
|
+
"module": "../fesm2015/covalent-echarts-toolbox.mjs",
|
|
3
|
+
"es2020": "../fesm2020/covalent-echarts-toolbox.mjs",
|
|
4
|
+
"esm2020": "../esm2020/toolbox/covalent-echarts-toolbox.mjs",
|
|
5
|
+
"fesm2020": "../fesm2020/covalent-echarts-toolbox.mjs",
|
|
6
|
+
"fesm2015": "../fesm2015/covalent-echarts-toolbox.mjs",
|
|
7
7
|
"typings": "covalent-echarts-toolbox.d.ts",
|
|
8
|
-
"metadata": "covalent-echarts-toolbox.metadata.json",
|
|
9
8
|
"sideEffects": false,
|
|
10
9
|
"name": "@covalent/echarts/toolbox"
|
|
11
|
-
}
|
|
10
|
+
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { TemplateRef, ElementRef, ChangeDetectorRef, OnChanges, OnDestroy } from '@angular/core';
|
|
2
2
|
import { TdChartOptionsService, ITdLabel, ITdShadow, ITdItemStyle, TdTextPosition, TdTextAlign } from '@covalent/echarts/base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare type TdToolboxOrient = 'horizontal' | 'vertical';
|
|
4
5
|
export declare type TdImageType = 'png' | 'jpeg';
|
|
5
6
|
export interface ITdAcceptedBrushTypes {
|
|
@@ -100,6 +101,8 @@ export interface ITdToolboxFeature {
|
|
|
100
101
|
brush?: ITdBrush;
|
|
101
102
|
}
|
|
102
103
|
export declare class TdChartViewDataFormatterDirective {
|
|
104
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TdChartViewDataFormatterDirective, never>;
|
|
105
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TdChartViewDataFormatterDirective, "ng-template[tdViewDataFormatter]", never, {}, {}, never>;
|
|
103
106
|
}
|
|
104
107
|
export declare class TdChartToolboxComponent implements OnChanges, OnDestroy {
|
|
105
108
|
private _changeDetectorRef;
|
|
@@ -134,4 +137,6 @@ export declare class TdChartToolboxComponent implements OnChanges, OnDestroy {
|
|
|
134
137
|
private _removeOption;
|
|
135
138
|
private _checkFormatterTemplate;
|
|
136
139
|
private _optionToContentFormatter;
|
|
140
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TdChartToolboxComponent, never>;
|
|
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>;
|
|
137
142
|
}
|
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
import { Type } from '@angular/core';
|
|
2
|
-
import
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "./toolbox.component";
|
|
4
|
+
import * as i2 from "@angular/common";
|
|
3
5
|
export declare const TOOLBOX_MODULE_COMPONENTS: Type<any>[];
|
|
4
6
|
export declare class CovalentToolboxEchartsModule {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CovalentToolboxEchartsModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CovalentToolboxEchartsModule, [typeof i1.TdChartToolboxComponent, typeof i1.TdChartViewDataFormatterDirective], [typeof i2.CommonModule], [typeof i1.TdChartToolboxComponent, typeof i1.TdChartViewDataFormatterDirective]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<CovalentToolboxEchartsModule>;
|
|
5
10
|
}
|
package/tooltip/package.json
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"fesm2015": "../fesm2015/covalent-echarts-tooltip.
|
|
2
|
+
"module": "../fesm2015/covalent-echarts-tooltip.mjs",
|
|
3
|
+
"es2020": "../fesm2020/covalent-echarts-tooltip.mjs",
|
|
4
|
+
"esm2020": "../esm2020/tooltip/covalent-echarts-tooltip.mjs",
|
|
5
|
+
"fesm2020": "../fesm2020/covalent-echarts-tooltip.mjs",
|
|
6
|
+
"fesm2015": "../fesm2015/covalent-echarts-tooltip.mjs",
|
|
7
7
|
"typings": "covalent-echarts-tooltip.d.ts",
|
|
8
|
-
"metadata": "covalent-echarts-tooltip.metadata.json",
|
|
9
8
|
"sideEffects": false,
|
|
10
9
|
"name": "@covalent/echarts/tooltip"
|
|
11
|
-
}
|
|
10
|
+
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { TemplateRef, ChangeDetectorRef, ElementRef, OnChanges, OnDestroy } from '@angular/core';
|
|
2
2
|
import { TdSeriesDirective } from '@covalent/echarts/base';
|
|
3
3
|
import { TdTooltipContext } from './tooltip.component';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class TdSeriesTooltipComponent implements OnChanges, OnDestroy {
|
|
5
6
|
private _changeDetectorRef;
|
|
6
7
|
private _elementRef;
|
|
@@ -28,4 +29,6 @@ export declare class TdSeriesTooltipComponent implements OnChanges, OnDestroy {
|
|
|
28
29
|
*/
|
|
29
30
|
private _formatter;
|
|
30
31
|
private _removeOption;
|
|
32
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TdSeriesTooltipComponent, never>;
|
|
33
|
+
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>;
|
|
31
34
|
}
|
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
import { TemplateRef, ElementRef, ChangeDetectorRef, OnChanges, OnDestroy } from '@angular/core';
|
|
2
2
|
import { TdChartOptionsService, TdTooltipTrigger, TdTooltipTriggerOn, TdTooltipPosition } from '@covalent/echarts/base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class TdTooltipContext {
|
|
4
5
|
$implicit: any;
|
|
5
6
|
ticket: string;
|
|
6
7
|
}
|
|
7
8
|
export declare class TdChartTooltipFormatterDirective {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TdChartTooltipFormatterDirective, never>;
|
|
10
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TdChartTooltipFormatterDirective, "ng-template[tdTooltipFormatter]", never, {}, {}, never>;
|
|
8
11
|
}
|
|
9
12
|
export declare class TdChartTooltipComponent implements OnChanges, OnDestroy {
|
|
10
13
|
private _changeDetectorRef;
|
|
@@ -41,4 +44,6 @@ export declare class TdChartTooltipComponent implements OnChanges, OnDestroy {
|
|
|
41
44
|
private _setOptions;
|
|
42
45
|
private _removeOption;
|
|
43
46
|
private _formatter;
|
|
47
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TdChartTooltipComponent, never>;
|
|
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>;
|
|
44
49
|
}
|
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
import { Type } from '@angular/core';
|
|
2
|
-
import
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "./tooltip.component";
|
|
4
|
+
import * as i2 from "./series-tooltip.component";
|
|
5
|
+
import * as i3 from "@angular/common";
|
|
3
6
|
export declare const TOOLTIP_MODULE_COMPONENTS: Type<any>[];
|
|
4
7
|
export declare class CovalentTooltipEchartsModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CovalentTooltipEchartsModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CovalentTooltipEchartsModule, [typeof i1.TdChartTooltipComponent, typeof i1.TdChartTooltipFormatterDirective, typeof i2.TdSeriesTooltipComponent], [typeof i3.CommonModule], [typeof i1.TdChartTooltipComponent, typeof i1.TdChartTooltipFormatterDirective, typeof i2.TdSeriesTooltipComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<CovalentTooltipEchartsModule>;
|
|
5
11
|
}
|
package/tree/package.json
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"fesm2015": "../fesm2015/covalent-echarts-tree.
|
|
2
|
+
"module": "../fesm2015/covalent-echarts-tree.mjs",
|
|
3
|
+
"es2020": "../fesm2020/covalent-echarts-tree.mjs",
|
|
4
|
+
"esm2020": "../esm2020/tree/covalent-echarts-tree.mjs",
|
|
5
|
+
"fesm2020": "../fesm2020/covalent-echarts-tree.mjs",
|
|
6
|
+
"fesm2015": "../fesm2015/covalent-echarts-tree.mjs",
|
|
7
7
|
"typings": "covalent-echarts-tree.d.ts",
|
|
8
|
-
"metadata": "covalent-echarts-tree.metadata.json",
|
|
9
8
|
"sideEffects": false,
|
|
10
9
|
"name": "@covalent/echarts/tree"
|
|
11
|
-
}
|
|
10
|
+
}
|
package/tree/tree.component.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { TdChartOptionsService, ITdItemStyle, TdMarkPointSymbol, ITdLabel, ITdLineStyle, ITdSeries, TdSeriesDirective, ITdEmphasis, ITdShadow } from '@covalent/echarts/base';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
/**
|
|
3
4
|
* ECHART OPTION DOCS
|
|
4
5
|
* https://ecomfe.github.io/echarts-doc/public/en/option.html#series-tree
|
|
@@ -76,5 +77,7 @@ export declare class TdChartSeriesTreeComponent extends TdSeriesDirective implem
|
|
|
76
77
|
emphasis: ITdTreeEmphasis;
|
|
77
78
|
constructor(_optionsService: TdChartOptionsService);
|
|
78
79
|
getConfig(): any;
|
|
80
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TdChartSeriesTreeComponent, never>;
|
|
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>;
|
|
79
82
|
}
|
|
80
83
|
export {};
|
package/tree/tree.module.d.ts
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
import { Type } from '@angular/core';
|
|
2
|
-
import
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "./tree.component";
|
|
4
|
+
import * as i2 from "@angular/common";
|
|
3
5
|
export declare const TREE_MODULE_COMPONENTS: Type<any>[];
|
|
4
6
|
export declare class CovalentTreeEchartsModule {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CovalentTreeEchartsModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CovalentTreeEchartsModule, [typeof i1.TdChartSeriesTreeComponent], [typeof i2.CommonModule], [typeof i1.TdChartSeriesTreeComponent]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<CovalentTreeEchartsModule>;
|
|
5
10
|
}
|
package/treemap/package.json
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"fesm2015": "../fesm2015/covalent-echarts-treemap.
|
|
2
|
+
"module": "../fesm2015/covalent-echarts-treemap.mjs",
|
|
3
|
+
"es2020": "../fesm2020/covalent-echarts-treemap.mjs",
|
|
4
|
+
"esm2020": "../esm2020/treemap/covalent-echarts-treemap.mjs",
|
|
5
|
+
"fesm2020": "../fesm2020/covalent-echarts-treemap.mjs",
|
|
6
|
+
"fesm2015": "../fesm2015/covalent-echarts-treemap.mjs",
|
|
7
7
|
"typings": "covalent-echarts-treemap.d.ts",
|
|
8
|
-
"metadata": "covalent-echarts-treemap.metadata.json",
|
|
9
8
|
"sideEffects": false,
|
|
10
9
|
"name": "@covalent/echarts/treemap"
|
|
11
|
-
}
|
|
10
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { TdChartOptionsService, ITdItemStyle, ITdSeriesTooltip, ITdLabel, ITdSeries, TdSeriesDirective, ITdEmphasis, ITdShadow } from '@covalent/echarts/base';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
/**
|
|
3
4
|
* ECHART OPTION DOCS
|
|
4
5
|
* https://ecomfe.github.io/echarts-examples/public/index.html#chart-type-treemap
|
|
@@ -127,5 +128,7 @@ export declare class TdChartSeriesTreemapComponent extends TdSeriesDirective imp
|
|
|
127
128
|
tooltip: ITdSeriesTooltip;
|
|
128
129
|
constructor(_optionsService: TdChartOptionsService);
|
|
129
130
|
getConfig(): any;
|
|
131
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TdChartSeriesTreemapComponent, never>;
|
|
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>;
|
|
130
133
|
}
|
|
131
134
|
export {};
|