@covalent/echarts 3.1.2 → 4.0.0-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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
|
@@ -1,420 +0,0 @@
|
|
|
1
|
-
import { Component, ChangeDetectionStrategy, forwardRef, Input, NgModule } from '@angular/core';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import 'echarts/lib/chart/treemap';
|
|
4
|
-
import { TdSeriesDirective, TdChartOptionsService } from '@covalent/echarts/base';
|
|
5
|
-
|
|
6
|
-
/**
|
|
7
|
-
* @fileoverview added by tsickle
|
|
8
|
-
* Generated from: treemap.component.ts
|
|
9
|
-
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
10
|
-
*/
|
|
11
|
-
/**
|
|
12
|
-
* ECHART OPTION DOCS
|
|
13
|
-
* https://ecomfe.github.io/echarts-examples/public/index.html#chart-type-treemap
|
|
14
|
-
*
|
|
15
|
-
* @record
|
|
16
|
-
*/
|
|
17
|
-
function ITdTreemapEmphasisLineStyle() { }
|
|
18
|
-
if (false) {
|
|
19
|
-
/** @type {?|undefined} */
|
|
20
|
-
ITdTreemapEmphasisLineStyle.prototype.color;
|
|
21
|
-
/** @type {?|undefined} */
|
|
22
|
-
ITdTreemapEmphasisLineStyle.prototype.width;
|
|
23
|
-
/** @type {?|undefined} */
|
|
24
|
-
ITdTreemapEmphasisLineStyle.prototype.curveness;
|
|
25
|
-
}
|
|
26
|
-
/**
|
|
27
|
-
* @record
|
|
28
|
-
*/
|
|
29
|
-
function ITdTreemapEmphasis() { }
|
|
30
|
-
if (false) {
|
|
31
|
-
/** @type {?} */
|
|
32
|
-
ITdTreemapEmphasis.prototype.lineStyle;
|
|
33
|
-
}
|
|
34
|
-
/**
|
|
35
|
-
* @record
|
|
36
|
-
*/
|
|
37
|
-
function ITdTreemapUpperLabel() { }
|
|
38
|
-
if (false) {
|
|
39
|
-
/** @type {?|undefined} */
|
|
40
|
-
ITdTreemapUpperLabel.prototype.show;
|
|
41
|
-
/** @type {?|undefined} */
|
|
42
|
-
ITdTreemapUpperLabel.prototype.position;
|
|
43
|
-
/** @type {?|undefined} */
|
|
44
|
-
ITdTreemapUpperLabel.prototype.distance;
|
|
45
|
-
/** @type {?|undefined} */
|
|
46
|
-
ITdTreemapUpperLabel.prototype.rotate;
|
|
47
|
-
/** @type {?|undefined} */
|
|
48
|
-
ITdTreemapUpperLabel.prototype.offset;
|
|
49
|
-
/** @type {?|undefined} */
|
|
50
|
-
ITdTreemapUpperLabel.prototype.formatter;
|
|
51
|
-
/** @type {?|undefined} */
|
|
52
|
-
ITdTreemapUpperLabel.prototype.color;
|
|
53
|
-
/** @type {?|undefined} */
|
|
54
|
-
ITdTreemapUpperLabel.prototype.fontStyle;
|
|
55
|
-
/** @type {?|undefined} */
|
|
56
|
-
ITdTreemapUpperLabel.prototype.fontWeight;
|
|
57
|
-
/** @type {?|undefined} */
|
|
58
|
-
ITdTreemapUpperLabel.prototype.fontFamily;
|
|
59
|
-
/** @type {?|undefined} */
|
|
60
|
-
ITdTreemapUpperLabel.prototype.fontSize;
|
|
61
|
-
/** @type {?|undefined} */
|
|
62
|
-
ITdTreemapUpperLabel.prototype.align;
|
|
63
|
-
/** @type {?|undefined} */
|
|
64
|
-
ITdTreemapUpperLabel.prototype.verticalAlign;
|
|
65
|
-
/** @type {?|undefined} */
|
|
66
|
-
ITdTreemapUpperLabel.prototype.lineHeight;
|
|
67
|
-
/** @type {?|undefined} */
|
|
68
|
-
ITdTreemapUpperLabel.prototype.backgroundColor;
|
|
69
|
-
/** @type {?|undefined} */
|
|
70
|
-
ITdTreemapUpperLabel.prototype.borderColor;
|
|
71
|
-
/** @type {?|undefined} */
|
|
72
|
-
ITdTreemapUpperLabel.prototype.borderWidth;
|
|
73
|
-
/** @type {?|undefined} */
|
|
74
|
-
ITdTreemapUpperLabel.prototype.borderRadius;
|
|
75
|
-
/** @type {?|undefined} */
|
|
76
|
-
ITdTreemapUpperLabel.prototype.padding;
|
|
77
|
-
/** @type {?|undefined} */
|
|
78
|
-
ITdTreemapUpperLabel.prototype.shadowColor;
|
|
79
|
-
/** @type {?|undefined} */
|
|
80
|
-
ITdTreemapUpperLabel.prototype.shadowBlur;
|
|
81
|
-
/** @type {?|undefined} */
|
|
82
|
-
ITdTreemapUpperLabel.prototype.shadowOffsetX;
|
|
83
|
-
/** @type {?|undefined} */
|
|
84
|
-
ITdTreemapUpperLabel.prototype.shadowOffsetY;
|
|
85
|
-
/** @type {?|undefined} */
|
|
86
|
-
ITdTreemapUpperLabel.prototype.width;
|
|
87
|
-
/** @type {?|undefined} */
|
|
88
|
-
ITdTreemapUpperLabel.prototype.height;
|
|
89
|
-
/** @type {?|undefined} */
|
|
90
|
-
ITdTreemapUpperLabel.prototype.textBorderColor;
|
|
91
|
-
/** @type {?|undefined} */
|
|
92
|
-
ITdTreemapUpperLabel.prototype.textBorderWidth;
|
|
93
|
-
/** @type {?|undefined} */
|
|
94
|
-
ITdTreemapUpperLabel.prototype.textShadowColor;
|
|
95
|
-
/** @type {?|undefined} */
|
|
96
|
-
ITdTreemapUpperLabel.prototype.textShadowBlur;
|
|
97
|
-
/** @type {?|undefined} */
|
|
98
|
-
ITdTreemapUpperLabel.prototype.textShadowOffsetX;
|
|
99
|
-
/** @type {?|undefined} */
|
|
100
|
-
ITdTreemapUpperLabel.prototype.textShadowOffsetY;
|
|
101
|
-
/** @type {?} */
|
|
102
|
-
ITdTreemapUpperLabel.prototype.rich;
|
|
103
|
-
/** @type {?} */
|
|
104
|
-
ITdTreemapUpperLabel.prototype.ellipsis;
|
|
105
|
-
}
|
|
106
|
-
/**
|
|
107
|
-
* @record
|
|
108
|
-
*/
|
|
109
|
-
function ITdTreemapBreadcrumb() { }
|
|
110
|
-
if (false) {
|
|
111
|
-
/** @type {?|undefined} */
|
|
112
|
-
ITdTreemapBreadcrumb.prototype.show;
|
|
113
|
-
/** @type {?|undefined} */
|
|
114
|
-
ITdTreemapBreadcrumb.prototype.left;
|
|
115
|
-
/** @type {?|undefined} */
|
|
116
|
-
ITdTreemapBreadcrumb.prototype.top;
|
|
117
|
-
/** @type {?|undefined} */
|
|
118
|
-
ITdTreemapBreadcrumb.prototype.right;
|
|
119
|
-
/** @type {?|undefined} */
|
|
120
|
-
ITdTreemapBreadcrumb.prototype.bottom;
|
|
121
|
-
/** @type {?|undefined} */
|
|
122
|
-
ITdTreemapBreadcrumb.prototype.height;
|
|
123
|
-
/** @type {?|undefined} */
|
|
124
|
-
ITdTreemapBreadcrumb.prototype.emptyItemWidth;
|
|
125
|
-
/** @type {?|undefined} */
|
|
126
|
-
ITdTreemapBreadcrumb.prototype.itemStyle;
|
|
127
|
-
/** @type {?|undefined} */
|
|
128
|
-
ITdTreemapBreadcrumb.prototype.emphasis;
|
|
129
|
-
}
|
|
130
|
-
/**
|
|
131
|
-
* @record
|
|
132
|
-
*/
|
|
133
|
-
function ITdTreemapSeries() { }
|
|
134
|
-
if (false) {
|
|
135
|
-
/** @type {?|undefined} */
|
|
136
|
-
ITdTreemapSeries.prototype.zlevel;
|
|
137
|
-
/** @type {?|undefined} */
|
|
138
|
-
ITdTreemapSeries.prototype.z;
|
|
139
|
-
/** @type {?|undefined} */
|
|
140
|
-
ITdTreemapSeries.prototype.left;
|
|
141
|
-
/** @type {?|undefined} */
|
|
142
|
-
ITdTreemapSeries.prototype.top;
|
|
143
|
-
/** @type {?|undefined} */
|
|
144
|
-
ITdTreemapSeries.prototype.right;
|
|
145
|
-
/** @type {?|undefined} */
|
|
146
|
-
ITdTreemapSeries.prototype.bottom;
|
|
147
|
-
/** @type {?|undefined} */
|
|
148
|
-
ITdTreemapSeries.prototype.width;
|
|
149
|
-
/** @type {?|undefined} */
|
|
150
|
-
ITdTreemapSeries.prototype.height;
|
|
151
|
-
/** @type {?|undefined} */
|
|
152
|
-
ITdTreemapSeries.prototype.squareRatio;
|
|
153
|
-
/** @type {?|undefined} */
|
|
154
|
-
ITdTreemapSeries.prototype.leafDepth;
|
|
155
|
-
/** @type {?|undefined} */
|
|
156
|
-
ITdTreemapSeries.prototype.drillDownIcon;
|
|
157
|
-
/** @type {?|undefined} */
|
|
158
|
-
ITdTreemapSeries.prototype.roam;
|
|
159
|
-
/** @type {?|undefined} */
|
|
160
|
-
ITdTreemapSeries.prototype.nodeClick;
|
|
161
|
-
/** @type {?|undefined} */
|
|
162
|
-
ITdTreemapSeries.prototype.zoomToNodeRatio;
|
|
163
|
-
/** @type {?|undefined} */
|
|
164
|
-
ITdTreemapSeries.prototype.levels;
|
|
165
|
-
/** @type {?|undefined} */
|
|
166
|
-
ITdTreemapSeries.prototype.silent;
|
|
167
|
-
/** @type {?|undefined} */
|
|
168
|
-
ITdTreemapSeries.prototype.visualDimension;
|
|
169
|
-
/** @type {?|undefined} */
|
|
170
|
-
ITdTreemapSeries.prototype.visualMin;
|
|
171
|
-
/** @type {?|undefined} */
|
|
172
|
-
ITdTreemapSeries.prototype.visualMax;
|
|
173
|
-
/** @type {?|undefined} */
|
|
174
|
-
ITdTreemapSeries.prototype.colorAlpha;
|
|
175
|
-
/** @type {?|undefined} */
|
|
176
|
-
ITdTreemapSeries.prototype.colorSaturation;
|
|
177
|
-
/** @type {?|undefined} */
|
|
178
|
-
ITdTreemapSeries.prototype.colorMappingBy;
|
|
179
|
-
/** @type {?|undefined} */
|
|
180
|
-
ITdTreemapSeries.prototype.visibleMin;
|
|
181
|
-
/** @type {?|undefined} */
|
|
182
|
-
ITdTreemapSeries.prototype.childrenVisibleMin;
|
|
183
|
-
/** @type {?|undefined} */
|
|
184
|
-
ITdTreemapSeries.prototype.itemStyle;
|
|
185
|
-
/** @type {?|undefined} */
|
|
186
|
-
ITdTreemapSeries.prototype.label;
|
|
187
|
-
/** @type {?|undefined} */
|
|
188
|
-
ITdTreemapSeries.prototype.upperLabel;
|
|
189
|
-
/** @type {?|undefined} */
|
|
190
|
-
ITdTreemapSeries.prototype.breadcrumb;
|
|
191
|
-
/** @type {?|undefined} */
|
|
192
|
-
ITdTreemapSeries.prototype.emphasis;
|
|
193
|
-
/** @type {?} */
|
|
194
|
-
ITdTreemapSeries.prototype.data;
|
|
195
|
-
}
|
|
196
|
-
class TdChartSeriesTreemapComponent extends TdSeriesDirective {
|
|
197
|
-
/**
|
|
198
|
-
* @param {?} _optionsService
|
|
199
|
-
*/
|
|
200
|
-
constructor(_optionsService) {
|
|
201
|
-
super('treemap', _optionsService);
|
|
202
|
-
this.config = {};
|
|
203
|
-
}
|
|
204
|
-
/**
|
|
205
|
-
* @return {?}
|
|
206
|
-
*/
|
|
207
|
-
getConfig() {
|
|
208
|
-
return {
|
|
209
|
-
zlevel: this.zlevel,
|
|
210
|
-
z: this.z,
|
|
211
|
-
left: this.left,
|
|
212
|
-
top: this.top,
|
|
213
|
-
right: this.right,
|
|
214
|
-
bottom: this.bottom,
|
|
215
|
-
width: this.width,
|
|
216
|
-
height: this.height,
|
|
217
|
-
squareRatio: this.squareRatio,
|
|
218
|
-
leafDepth: this.leafDepth,
|
|
219
|
-
drillDownIcon: this.drillDownIcon,
|
|
220
|
-
roam: this.roam,
|
|
221
|
-
nodeClick: this.nodeClick,
|
|
222
|
-
zoomToNodeRatio: this.zoomToNodeRatio,
|
|
223
|
-
levels: this.levels,
|
|
224
|
-
silent: this.silent,
|
|
225
|
-
visualDimension: this.visualDimension,
|
|
226
|
-
visualMin: this.visualMin,
|
|
227
|
-
visualMax: this.visualMax,
|
|
228
|
-
colorAlpha: this.colorAlpha,
|
|
229
|
-
colorSaturation: this.colorSaturation,
|
|
230
|
-
colorMappingBy: this.colorMappingBy,
|
|
231
|
-
visibleMin: this.visibleMin,
|
|
232
|
-
childrenVisibleMin: this.childrenVisibleMin,
|
|
233
|
-
itemStyle: this.itemStyle,
|
|
234
|
-
label: this.label,
|
|
235
|
-
upperLabel: this.upperLabel,
|
|
236
|
-
breadcrumb: this.breadcrumb,
|
|
237
|
-
emphasis: this.emphasis,
|
|
238
|
-
};
|
|
239
|
-
}
|
|
240
|
-
}
|
|
241
|
-
TdChartSeriesTreemapComponent.decorators = [
|
|
242
|
-
{ type: Component, args: [{
|
|
243
|
-
selector: 'td-chart-series[td-treemap]',
|
|
244
|
-
template: '',
|
|
245
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
246
|
-
inputs: [
|
|
247
|
-
'config',
|
|
248
|
-
'id',
|
|
249
|
-
'name',
|
|
250
|
-
'color',
|
|
251
|
-
'data',
|
|
252
|
-
'animation',
|
|
253
|
-
'animationThreshold',
|
|
254
|
-
'animationDuration',
|
|
255
|
-
'animationEasing',
|
|
256
|
-
'animationDelay',
|
|
257
|
-
'animationDurationUpdate',
|
|
258
|
-
'animationEasingUpdate',
|
|
259
|
-
'animationDelayUpdate',
|
|
260
|
-
'tooltip',
|
|
261
|
-
],
|
|
262
|
-
providers: [
|
|
263
|
-
{
|
|
264
|
-
provide: TdSeriesDirective,
|
|
265
|
-
useExisting: forwardRef((/**
|
|
266
|
-
* @return {?}
|
|
267
|
-
*/
|
|
268
|
-
() => TdChartSeriesTreemapComponent)),
|
|
269
|
-
},
|
|
270
|
-
]
|
|
271
|
-
}] }
|
|
272
|
-
];
|
|
273
|
-
/** @nocollapse */
|
|
274
|
-
TdChartSeriesTreemapComponent.ctorParameters = () => [
|
|
275
|
-
{ type: TdChartOptionsService }
|
|
276
|
-
];
|
|
277
|
-
TdChartSeriesTreemapComponent.propDecorators = {
|
|
278
|
-
config: [{ type: Input }],
|
|
279
|
-
id: [{ type: Input }],
|
|
280
|
-
name: [{ type: Input }],
|
|
281
|
-
data: [{ type: Input }],
|
|
282
|
-
zlevel: [{ type: Input }],
|
|
283
|
-
z: [{ type: Input }],
|
|
284
|
-
left: [{ type: Input }],
|
|
285
|
-
top: [{ type: Input }],
|
|
286
|
-
right: [{ type: Input }],
|
|
287
|
-
bottom: [{ type: Input }],
|
|
288
|
-
width: [{ type: Input }],
|
|
289
|
-
height: [{ type: Input }],
|
|
290
|
-
squareRatio: [{ type: Input }],
|
|
291
|
-
leafDepth: [{ type: Input }],
|
|
292
|
-
drillDownIcon: [{ type: Input }],
|
|
293
|
-
roam: [{ type: Input }],
|
|
294
|
-
nodeClick: [{ type: Input }],
|
|
295
|
-
zoomToNodeRatio: [{ type: Input }],
|
|
296
|
-
levels: [{ type: Input }],
|
|
297
|
-
silent: [{ type: Input }],
|
|
298
|
-
visualDimension: [{ type: Input }],
|
|
299
|
-
visualMin: [{ type: Input }],
|
|
300
|
-
visualMax: [{ type: Input }],
|
|
301
|
-
colorAlpha: [{ type: Input }],
|
|
302
|
-
colorSaturation: [{ type: Input }],
|
|
303
|
-
colorMappingBy: [{ type: Input }],
|
|
304
|
-
visibleMin: [{ type: Input }],
|
|
305
|
-
childrenVisibleMin: [{ type: Input }],
|
|
306
|
-
itemStyle: [{ type: Input }],
|
|
307
|
-
label: [{ type: Input }],
|
|
308
|
-
upperLabel: [{ type: Input }],
|
|
309
|
-
breadcrumb: [{ type: Input }],
|
|
310
|
-
emphasis: [{ type: Input }],
|
|
311
|
-
tooltip: [{ type: Input }]
|
|
312
|
-
};
|
|
313
|
-
if (false) {
|
|
314
|
-
/** @type {?} */
|
|
315
|
-
TdChartSeriesTreemapComponent.prototype.config;
|
|
316
|
-
/** @type {?} */
|
|
317
|
-
TdChartSeriesTreemapComponent.prototype.id;
|
|
318
|
-
/** @type {?} */
|
|
319
|
-
TdChartSeriesTreemapComponent.prototype.name;
|
|
320
|
-
/** @type {?} */
|
|
321
|
-
TdChartSeriesTreemapComponent.prototype.data;
|
|
322
|
-
/** @type {?} */
|
|
323
|
-
TdChartSeriesTreemapComponent.prototype.zlevel;
|
|
324
|
-
/** @type {?} */
|
|
325
|
-
TdChartSeriesTreemapComponent.prototype.z;
|
|
326
|
-
/** @type {?} */
|
|
327
|
-
TdChartSeriesTreemapComponent.prototype.left;
|
|
328
|
-
/** @type {?} */
|
|
329
|
-
TdChartSeriesTreemapComponent.prototype.top;
|
|
330
|
-
/** @type {?} */
|
|
331
|
-
TdChartSeriesTreemapComponent.prototype.right;
|
|
332
|
-
/** @type {?} */
|
|
333
|
-
TdChartSeriesTreemapComponent.prototype.bottom;
|
|
334
|
-
/** @type {?} */
|
|
335
|
-
TdChartSeriesTreemapComponent.prototype.width;
|
|
336
|
-
/** @type {?} */
|
|
337
|
-
TdChartSeriesTreemapComponent.prototype.height;
|
|
338
|
-
/** @type {?} */
|
|
339
|
-
TdChartSeriesTreemapComponent.prototype.squareRatio;
|
|
340
|
-
/** @type {?} */
|
|
341
|
-
TdChartSeriesTreemapComponent.prototype.leafDepth;
|
|
342
|
-
/** @type {?} */
|
|
343
|
-
TdChartSeriesTreemapComponent.prototype.drillDownIcon;
|
|
344
|
-
/** @type {?} */
|
|
345
|
-
TdChartSeriesTreemapComponent.prototype.roam;
|
|
346
|
-
/** @type {?} */
|
|
347
|
-
TdChartSeriesTreemapComponent.prototype.nodeClick;
|
|
348
|
-
/** @type {?} */
|
|
349
|
-
TdChartSeriesTreemapComponent.prototype.zoomToNodeRatio;
|
|
350
|
-
/** @type {?} */
|
|
351
|
-
TdChartSeriesTreemapComponent.prototype.levels;
|
|
352
|
-
/** @type {?} */
|
|
353
|
-
TdChartSeriesTreemapComponent.prototype.silent;
|
|
354
|
-
/** @type {?} */
|
|
355
|
-
TdChartSeriesTreemapComponent.prototype.visualDimension;
|
|
356
|
-
/** @type {?} */
|
|
357
|
-
TdChartSeriesTreemapComponent.prototype.visualMin;
|
|
358
|
-
/** @type {?} */
|
|
359
|
-
TdChartSeriesTreemapComponent.prototype.visualMax;
|
|
360
|
-
/** @type {?} */
|
|
361
|
-
TdChartSeriesTreemapComponent.prototype.colorAlpha;
|
|
362
|
-
/** @type {?} */
|
|
363
|
-
TdChartSeriesTreemapComponent.prototype.colorSaturation;
|
|
364
|
-
/** @type {?} */
|
|
365
|
-
TdChartSeriesTreemapComponent.prototype.colorMappingBy;
|
|
366
|
-
/** @type {?} */
|
|
367
|
-
TdChartSeriesTreemapComponent.prototype.visibleMin;
|
|
368
|
-
/** @type {?} */
|
|
369
|
-
TdChartSeriesTreemapComponent.prototype.childrenVisibleMin;
|
|
370
|
-
/** @type {?} */
|
|
371
|
-
TdChartSeriesTreemapComponent.prototype.itemStyle;
|
|
372
|
-
/** @type {?} */
|
|
373
|
-
TdChartSeriesTreemapComponent.prototype.label;
|
|
374
|
-
/** @type {?} */
|
|
375
|
-
TdChartSeriesTreemapComponent.prototype.upperLabel;
|
|
376
|
-
/** @type {?} */
|
|
377
|
-
TdChartSeriesTreemapComponent.prototype.breadcrumb;
|
|
378
|
-
/** @type {?} */
|
|
379
|
-
TdChartSeriesTreemapComponent.prototype.emphasis;
|
|
380
|
-
/** @type {?} */
|
|
381
|
-
TdChartSeriesTreemapComponent.prototype.tooltip;
|
|
382
|
-
}
|
|
383
|
-
|
|
384
|
-
/**
|
|
385
|
-
* @fileoverview added by tsickle
|
|
386
|
-
* Generated from: treemap.module.ts
|
|
387
|
-
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
388
|
-
*/
|
|
389
|
-
/** @type {?} */
|
|
390
|
-
const TREEMAP_MODULE_COMPONENTS = [TdChartSeriesTreemapComponent];
|
|
391
|
-
class CovalentTreemapEchartsModule {
|
|
392
|
-
}
|
|
393
|
-
CovalentTreemapEchartsModule.decorators = [
|
|
394
|
-
{ type: NgModule, args: [{
|
|
395
|
-
imports: [CommonModule],
|
|
396
|
-
declarations: [TREEMAP_MODULE_COMPONENTS],
|
|
397
|
-
exports: [TREEMAP_MODULE_COMPONENTS],
|
|
398
|
-
},] }
|
|
399
|
-
];
|
|
400
|
-
|
|
401
|
-
/**
|
|
402
|
-
* @fileoverview added by tsickle
|
|
403
|
-
* Generated from: public-api.ts
|
|
404
|
-
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
405
|
-
*/
|
|
406
|
-
|
|
407
|
-
/**
|
|
408
|
-
* @fileoverview added by tsickle
|
|
409
|
-
* Generated from: index.ts
|
|
410
|
-
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
411
|
-
*/
|
|
412
|
-
|
|
413
|
-
/**
|
|
414
|
-
* @fileoverview added by tsickle
|
|
415
|
-
* Generated from: covalent-echarts-treemap.ts
|
|
416
|
-
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
417
|
-
*/
|
|
418
|
-
|
|
419
|
-
export { CovalentTreemapEchartsModule, TREEMAP_MODULE_COMPONENTS, TdChartSeriesTreemapComponent };
|
|
420
|
-
//# sourceMappingURL=covalent-echarts-treemap.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"covalent-echarts-treemap.js","sources":["../../../../src/platform/echarts/treemap/treemap.component.ts","../../../../src/platform/echarts/treemap/treemap.module.ts"],"sourcesContent":["import { Component, Input, ChangeDetectionStrategy, forwardRef } 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 extends TdSeriesDirective implements ITdTreemapSeries {\n @Input() config: any = {};\n @Input() id: string;\n @Input() name: string;\n @Input() 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() 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 'echarts/lib/chart/treemap';\n\nimport { TdChartSeriesTreemapComponent } from './treemap.component';\n\nexport const TREEMAP_MODULE_COMPONENTS: Type<any>[] = [TdChartSeriesTreemapComponent];\n\n@NgModule({\n imports: [CommonModule],\n declarations: [TREEMAP_MODULE_COMPONENTS],\n exports: [TREEMAP_MODULE_COMPONENTS],\n})\nexport class CovalentTreemapEchartsModule {}\n"],"names":[],"mappings":"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"}
|
|
@@ -1,214 +0,0 @@
|
|
|
1
|
-
import { Component, ChangeDetectionStrategy, forwardRef, Input, NgModule } from '@angular/core';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import 'echarts-wordcloud';
|
|
4
|
-
import { TdSeriesDirective, TdChartOptionsService } from '@covalent/echarts/base';
|
|
5
|
-
|
|
6
|
-
/**
|
|
7
|
-
* @fileoverview added by tsickle
|
|
8
|
-
* Generated from: wordcloud.component.ts
|
|
9
|
-
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
10
|
-
*/
|
|
11
|
-
/**
|
|
12
|
-
* @record
|
|
13
|
-
*/
|
|
14
|
-
function ITdWordcloudTextStyle() { }
|
|
15
|
-
if (false) {
|
|
16
|
-
/** @type {?|undefined} */
|
|
17
|
-
ITdWordcloudTextStyle.prototype.normal;
|
|
18
|
-
/** @type {?|undefined} */
|
|
19
|
-
ITdWordcloudTextStyle.prototype.emphasis;
|
|
20
|
-
}
|
|
21
|
-
/**
|
|
22
|
-
* @record
|
|
23
|
-
*/
|
|
24
|
-
function ITdWordCloudData() { }
|
|
25
|
-
if (false) {
|
|
26
|
-
/** @type {?} */
|
|
27
|
-
ITdWordCloudData.prototype.name;
|
|
28
|
-
/** @type {?} */
|
|
29
|
-
ITdWordCloudData.prototype.value;
|
|
30
|
-
/** @type {?|undefined} */
|
|
31
|
-
ITdWordCloudData.prototype.textStyle;
|
|
32
|
-
}
|
|
33
|
-
/**
|
|
34
|
-
* @record
|
|
35
|
-
*/
|
|
36
|
-
function ITdWordcloudSeries() { }
|
|
37
|
-
if (false) {
|
|
38
|
-
/** @type {?|undefined} */
|
|
39
|
-
ITdWordcloudSeries.prototype.data;
|
|
40
|
-
/** @type {?|undefined} */
|
|
41
|
-
ITdWordcloudSeries.prototype.shape;
|
|
42
|
-
/** @type {?|undefined} */
|
|
43
|
-
ITdWordcloudSeries.prototype.left;
|
|
44
|
-
/** @type {?|undefined} */
|
|
45
|
-
ITdWordcloudSeries.prototype.top;
|
|
46
|
-
/** @type {?|undefined} */
|
|
47
|
-
ITdWordcloudSeries.prototype.width;
|
|
48
|
-
/** @type {?|undefined} */
|
|
49
|
-
ITdWordcloudSeries.prototype.height;
|
|
50
|
-
/** @type {?|undefined} */
|
|
51
|
-
ITdWordcloudSeries.prototype.right;
|
|
52
|
-
/** @type {?|undefined} */
|
|
53
|
-
ITdWordcloudSeries.prototype.bottom;
|
|
54
|
-
/** @type {?|undefined} */
|
|
55
|
-
ITdWordcloudSeries.prototype.sizeRange;
|
|
56
|
-
/** @type {?|undefined} */
|
|
57
|
-
ITdWordcloudSeries.prototype.rotationRange;
|
|
58
|
-
/** @type {?|undefined} */
|
|
59
|
-
ITdWordcloudSeries.prototype.rotationStep;
|
|
60
|
-
/** @type {?|undefined} */
|
|
61
|
-
ITdWordcloudSeries.prototype.gridSize;
|
|
62
|
-
/** @type {?|undefined} */
|
|
63
|
-
ITdWordcloudSeries.prototype.drawOutOfBound;
|
|
64
|
-
/** @type {?|undefined} */
|
|
65
|
-
ITdWordcloudSeries.prototype.textStyle;
|
|
66
|
-
}
|
|
67
|
-
class TdChartSeriesWordcloudComponent extends TdSeriesDirective {
|
|
68
|
-
/**
|
|
69
|
-
* @param {?} _optionsService
|
|
70
|
-
*/
|
|
71
|
-
constructor(_optionsService) {
|
|
72
|
-
super('wordCloud', _optionsService);
|
|
73
|
-
}
|
|
74
|
-
/**
|
|
75
|
-
* @return {?}
|
|
76
|
-
*/
|
|
77
|
-
getConfig() {
|
|
78
|
-
return {
|
|
79
|
-
shape: this.shape,
|
|
80
|
-
left: this.left,
|
|
81
|
-
top: this.top,
|
|
82
|
-
width: this.width,
|
|
83
|
-
height: this.height,
|
|
84
|
-
right: this.right,
|
|
85
|
-
bottom: this.bottom,
|
|
86
|
-
sizeRange: this.sizeRange,
|
|
87
|
-
rotationRange: this.rotationRange,
|
|
88
|
-
rotationStep: this.rotationStep,
|
|
89
|
-
gridSize: this.gridSize,
|
|
90
|
-
drawOutOfBound: this.drawOutOfBound,
|
|
91
|
-
textStyle: this.textStyle,
|
|
92
|
-
};
|
|
93
|
-
}
|
|
94
|
-
}
|
|
95
|
-
TdChartSeriesWordcloudComponent.decorators = [
|
|
96
|
-
{ type: Component, args: [{
|
|
97
|
-
selector: 'td-chart-series[td-wordCloud]',
|
|
98
|
-
template: '',
|
|
99
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
100
|
-
inputs: [
|
|
101
|
-
'config',
|
|
102
|
-
'id',
|
|
103
|
-
'name',
|
|
104
|
-
'color',
|
|
105
|
-
'data',
|
|
106
|
-
'animation',
|
|
107
|
-
'animationThreshold',
|
|
108
|
-
'animationDuration',
|
|
109
|
-
'animationEasing',
|
|
110
|
-
'animationDelay',
|
|
111
|
-
'animationDurationUpdate',
|
|
112
|
-
'animationEasingUpdate',
|
|
113
|
-
'animationDelayUpdate',
|
|
114
|
-
'tooltip',
|
|
115
|
-
],
|
|
116
|
-
providers: [
|
|
117
|
-
{
|
|
118
|
-
provide: TdSeriesDirective,
|
|
119
|
-
useExisting: forwardRef((/**
|
|
120
|
-
* @return {?}
|
|
121
|
-
*/
|
|
122
|
-
() => TdChartSeriesWordcloudComponent)),
|
|
123
|
-
},
|
|
124
|
-
]
|
|
125
|
-
}] }
|
|
126
|
-
];
|
|
127
|
-
/** @nocollapse */
|
|
128
|
-
TdChartSeriesWordcloudComponent.ctorParameters = () => [
|
|
129
|
-
{ type: TdChartOptionsService }
|
|
130
|
-
];
|
|
131
|
-
TdChartSeriesWordcloudComponent.propDecorators = {
|
|
132
|
-
data: [{ type: Input }],
|
|
133
|
-
shape: [{ type: Input }],
|
|
134
|
-
left: [{ type: Input }],
|
|
135
|
-
top: [{ type: Input }],
|
|
136
|
-
width: [{ type: Input }],
|
|
137
|
-
height: [{ type: Input }],
|
|
138
|
-
right: [{ type: Input }],
|
|
139
|
-
bottom: [{ type: Input }],
|
|
140
|
-
sizeRange: [{ type: Input }],
|
|
141
|
-
rotationRange: [{ type: Input }],
|
|
142
|
-
rotationStep: [{ type: Input }],
|
|
143
|
-
gridSize: [{ type: Input }],
|
|
144
|
-
drawOutOfBound: [{ type: Input }],
|
|
145
|
-
textStyle: [{ type: Input }]
|
|
146
|
-
};
|
|
147
|
-
if (false) {
|
|
148
|
-
/** @type {?} */
|
|
149
|
-
TdChartSeriesWordcloudComponent.prototype.data;
|
|
150
|
-
/** @type {?} */
|
|
151
|
-
TdChartSeriesWordcloudComponent.prototype.shape;
|
|
152
|
-
/** @type {?} */
|
|
153
|
-
TdChartSeriesWordcloudComponent.prototype.left;
|
|
154
|
-
/** @type {?} */
|
|
155
|
-
TdChartSeriesWordcloudComponent.prototype.top;
|
|
156
|
-
/** @type {?} */
|
|
157
|
-
TdChartSeriesWordcloudComponent.prototype.width;
|
|
158
|
-
/** @type {?} */
|
|
159
|
-
TdChartSeriesWordcloudComponent.prototype.height;
|
|
160
|
-
/** @type {?} */
|
|
161
|
-
TdChartSeriesWordcloudComponent.prototype.right;
|
|
162
|
-
/** @type {?} */
|
|
163
|
-
TdChartSeriesWordcloudComponent.prototype.bottom;
|
|
164
|
-
/** @type {?} */
|
|
165
|
-
TdChartSeriesWordcloudComponent.prototype.sizeRange;
|
|
166
|
-
/** @type {?} */
|
|
167
|
-
TdChartSeriesWordcloudComponent.prototype.rotationRange;
|
|
168
|
-
/** @type {?} */
|
|
169
|
-
TdChartSeriesWordcloudComponent.prototype.rotationStep;
|
|
170
|
-
/** @type {?} */
|
|
171
|
-
TdChartSeriesWordcloudComponent.prototype.gridSize;
|
|
172
|
-
/** @type {?} */
|
|
173
|
-
TdChartSeriesWordcloudComponent.prototype.drawOutOfBound;
|
|
174
|
-
/** @type {?} */
|
|
175
|
-
TdChartSeriesWordcloudComponent.prototype.textStyle;
|
|
176
|
-
}
|
|
177
|
-
|
|
178
|
-
/**
|
|
179
|
-
* @fileoverview added by tsickle
|
|
180
|
-
* Generated from: wordcloud.module.ts
|
|
181
|
-
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
182
|
-
*/
|
|
183
|
-
/** @type {?} */
|
|
184
|
-
const WORDCLOUD_MODULE_COMPONENTS = [TdChartSeriesWordcloudComponent];
|
|
185
|
-
class CovalentWordcloudEchartsModule {
|
|
186
|
-
}
|
|
187
|
-
CovalentWordcloudEchartsModule.decorators = [
|
|
188
|
-
{ type: NgModule, args: [{
|
|
189
|
-
imports: [CommonModule],
|
|
190
|
-
declarations: [WORDCLOUD_MODULE_COMPONENTS],
|
|
191
|
-
exports: [WORDCLOUD_MODULE_COMPONENTS],
|
|
192
|
-
},] }
|
|
193
|
-
];
|
|
194
|
-
|
|
195
|
-
/**
|
|
196
|
-
* @fileoverview added by tsickle
|
|
197
|
-
* Generated from: public-api.ts
|
|
198
|
-
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
199
|
-
*/
|
|
200
|
-
|
|
201
|
-
/**
|
|
202
|
-
* @fileoverview added by tsickle
|
|
203
|
-
* Generated from: index.ts
|
|
204
|
-
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
205
|
-
*/
|
|
206
|
-
|
|
207
|
-
/**
|
|
208
|
-
* @fileoverview added by tsickle
|
|
209
|
-
* Generated from: covalent-echarts-wordcloud.ts
|
|
210
|
-
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
211
|
-
*/
|
|
212
|
-
|
|
213
|
-
export { CovalentWordcloudEchartsModule, TdChartSeriesWordcloudComponent, WORDCLOUD_MODULE_COMPONENTS };
|
|
214
|
-
//# sourceMappingURL=covalent-echarts-wordcloud.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"covalent-echarts-wordcloud.js","sources":["../../../../src/platform/echarts/wordcloud/wordcloud.component.ts","../../../../src/platform/echarts/wordcloud/wordcloud.module.ts"],"sourcesContent":["import { Component, Input, ChangeDetectionStrategy, forwardRef } from '@angular/core';\n\nimport { TdChartOptionsService, ITdSeries, TdSeriesDirective } 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 extends TdSeriesDirective implements ITdWordcloudSeries {\n @Input() 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 'echarts-wordcloud';\n\nimport { TdChartSeriesWordcloudComponent } from './wordcloud.component';\n\nexport const WORDCLOUD_MODULE_COMPONENTS: Type<any>[] = [TdChartSeriesWordcloudComponent];\n\n@NgModule({\n imports: [CommonModule],\n declarations: [WORDCLOUD_MODULE_COMPONENTS],\n exports: [WORDCLOUD_MODULE_COMPONENTS],\n})\nexport class CovalentWordcloudEchartsModule {}\n"],"names":[],"mappings":";;;;;;;;;;;;;oCAuBC;;;IATC,uCAIE;;IACF,yCAGE;;;;;+BAOH;;;IAHC,gCAAa;;IACb,iCAAc;;IACd,qCAAkC;;;;;iCAkBnC;;;IAdC,kCAA0B;;IAC1B,mCAAyB;;IACzB,kCAAuB;;IACvB,iCAAsB;;IACtB,mCAAwB;;IACxB,oCAAyB;;IACzB,mCAAwB;;IACxB,oCAAyB;;IACzB,uCAAqB;;IACrB,2CAAyB;;IACzB,0CAAsB;;IACtB,sCAAkB;;IAClB,4CAAyB;;IACzB,uCAAkC;;MA+BvB,+BAAgC,SAAQ,iBAAiB;;;;IAgBpE,YAAY,eAAsC;QAChD,KAAK,CAAC,WAAW,EAAE,eAAe,CAAC,CAAC;KACrC;;;;IAED,SAAS;QACP,OAAO;YACL,KAAK,EAAE,IAAI,CAAC,KAAK;YACjB,IAAI,EAAE,IAAI,CAAC,IAAI;YACf,GAAG,EAAE,IAAI,CAAC,GAAG;YACb,KAAK,EAAE,IAAI,CAAC,KAAK;YACjB,MAAM,EAAE,IAAI,CAAC,MAAM;YACnB,KAAK,EAAE,IAAI,CAAC,KAAK;YACjB,MAAM,EAAE,IAAI,CAAC,MAAM;YACnB,SAAS,EAAE,IAAI,CAAC,SAAS;YACzB,aAAa,EAAE,IAAI,CAAC,aAAa;YACjC,YAAY,EAAE,IAAI,CAAC,YAAY;YAC/B,QAAQ,EAAE,IAAI,CAAC,QAAQ;YACvB,cAAc,EAAE,IAAI,CAAC,cAAc;YACnC,SAAS,EAAE,IAAI,CAAC,SAAS;SAC1B,CAAC;KACH;;;YAhEF,SAAS,SAAC;gBACT,QAAQ,EAAE,+BAA+B;gBACzC,QAAQ,EAAE,EAAE;gBACZ,eAAe,EAAE,uBAAuB,CAAC,MAAM;gBAC/C,MAAM,EAAE;oBACN,QAAQ;oBACR,IAAI;oBACJ,MAAM;oBACN,OAAO;oBACP,MAAM;oBAEN,WAAW;oBACX,oBAAoB;oBACpB,mBAAmB;oBACnB,iBAAiB;oBACjB,gBAAgB;oBAChB,yBAAyB;oBACzB,uBAAuB;oBACvB,sBAAsB;oBACtB,SAAS;iBACV;gBACD,SAAS,EAAE;oBACT;wBACE,OAAO,EAAE,iBAAiB;wBAC1B,WAAW,EAAE,UAAU;;;wBAAC,MAAM,+BAA+B,EAAC;qBAC/D;iBACF;aACF;;;;YAzEQ,qBAAqB;;;mBA2E3B,KAAK;oBACL,KAAK;mBACL,KAAK;kBACL,KAAK;oBACL,KAAK;qBACL,KAAK;oBACL,KAAK;qBACL,KAAK;wBACL,KAAK;4BACL,KAAK;2BACL,KAAK;uBACL,KAAK;6BACL,KAAK;wBACL,KAAK;;;;IAbN,+CAAkC;;IAClC,gDAAiC;;IACjC,+CAA+B;;IAC/B,8CAA8B;;IAC9B,gDAAgC;;IAChC,iDAAiC;;IACjC,gDAAgC;;IAChC,iDAAiC;;IACjC,oDAA6B;;IAC7B,wDAAiC;;IACjC,uDAA8B;;IAC9B,mDAA0B;;IAC1B,yDAAiC;;IACjC,oDAA0C;;;;;;;;;MCnF/B,2BAA2B,GAAgB,CAAC,+BAA+B;MAO3E,8BAA8B;;;YAL1C,QAAQ,SAAC;gBACR,OAAO,EAAE,CAAC,YAAY,CAAC;gBACvB,YAAY,EAAE,CAAC,2BAA2B,CAAC;gBAC3C,OAAO,EAAE,CAAC,2BAA2B,CAAC;aACvC;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @fileoverview added by tsickle
|
|
3
|
-
* Generated from: index.ts
|
|
4
|
-
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
5
|
-
*/
|
|
6
|
-
|
|
7
|
-
/**
|
|
8
|
-
* @fileoverview added by tsickle
|
|
9
|
-
* Generated from: covalent-echarts.ts
|
|
10
|
-
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
11
|
-
*/
|
|
12
|
-
//# sourceMappingURL=covalent-echarts.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"covalent-echarts.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;"}
|