@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
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { forwardRef, Component, ChangeDetectionStrategy, Input, NgModule } from '@angular/core';
|
|
3
|
+
import { CommonModule } from '@angular/common';
|
|
4
|
+
import * as i1 from '@covalent/echarts/base';
|
|
5
|
+
import { TdSeriesDirective } from '@covalent/echarts/base';
|
|
6
|
+
|
|
7
|
+
const _c0 = ["td-pie", ""];
|
|
8
|
+
class TdChartSeriesPieComponent extends TdSeriesDirective {
|
|
9
|
+
constructor(_optionsService) {
|
|
10
|
+
super('pie', _optionsService);
|
|
11
|
+
}
|
|
12
|
+
getConfig() {
|
|
13
|
+
return {
|
|
14
|
+
legendHoverLink: this.legendHoverLink,
|
|
15
|
+
label: this.label,
|
|
16
|
+
itemStyle: this.itemStyle,
|
|
17
|
+
emphasis: this.emphasis,
|
|
18
|
+
selectedMode: this.selectedMode,
|
|
19
|
+
selectedOffset: this.selectedOffset,
|
|
20
|
+
clockwise: this.clockwise,
|
|
21
|
+
startAngle: this.startAngle,
|
|
22
|
+
minAngle: this.minAngle,
|
|
23
|
+
minShowLabelAngle: this.minShowLabelAngle,
|
|
24
|
+
roseType: this.roseType,
|
|
25
|
+
avoidLabelOverlap: this.avoidLabelOverlap,
|
|
26
|
+
stillShowZeroSum: this.stillShowZeroSum,
|
|
27
|
+
cursor: this.cursor,
|
|
28
|
+
labelLine: this.labelLine,
|
|
29
|
+
seriesLayoutBy: this.seriesLayoutBy,
|
|
30
|
+
datasetIndex: this.datasetIndex,
|
|
31
|
+
markPoint: this.markPoint,
|
|
32
|
+
markLine: this.markLine,
|
|
33
|
+
markArea: this.markArea,
|
|
34
|
+
zlevel: this.zlevel,
|
|
35
|
+
z: this.z,
|
|
36
|
+
center: this.center,
|
|
37
|
+
radius: this.radius,
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
/** @nocollapse */ /** @nocollapse */ TdChartSeriesPieComponent.ɵfac = function TdChartSeriesPieComponent_Factory(t) { return new (t || TdChartSeriesPieComponent)(i0.ɵɵdirectiveInject(i1.TdChartOptionsService)); };
|
|
42
|
+
/** @nocollapse */ /** @nocollapse */ TdChartSeriesPieComponent.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: TdChartSeriesPieComponent, selectors: [["td-chart-series", "td-pie", ""]], inputs: { config: "config", id: "id", name: "name", color: "color", data: "data", animation: "animation", animationThreshold: "animationThreshold", animationDuration: "animationDuration", animationEasing: "animationEasing", animationDelay: "animationDelay", animationDurationUpdate: "animationDurationUpdate", animationEasingUpdate: "animationEasingUpdate", animationDelayUpdate: "animationDelayUpdate", tooltip: "tooltip", 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" }, features: [i0.ɵɵProvidersFeature([
|
|
43
|
+
{
|
|
44
|
+
provide: TdSeriesDirective,
|
|
45
|
+
useExisting: forwardRef((() => TdChartSeriesPieComponent)),
|
|
46
|
+
},
|
|
47
|
+
]), i0.ɵɵInheritDefinitionFeature], attrs: _c0, decls: 0, vars: 0, template: function TdChartSeriesPieComponent_Template(rf, ctx) { }, encapsulation: 2, changeDetection: 0 });
|
|
48
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TdChartSeriesPieComponent, [{
|
|
49
|
+
type: Component,
|
|
50
|
+
args: [{
|
|
51
|
+
selector: 'td-chart-series[td-pie]',
|
|
52
|
+
template: '',
|
|
53
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
54
|
+
inputs: [
|
|
55
|
+
'config',
|
|
56
|
+
'id',
|
|
57
|
+
'name',
|
|
58
|
+
'color',
|
|
59
|
+
'data',
|
|
60
|
+
'animation',
|
|
61
|
+
'animationThreshold',
|
|
62
|
+
'animationDuration',
|
|
63
|
+
'animationEasing',
|
|
64
|
+
'animationDelay',
|
|
65
|
+
'animationDurationUpdate',
|
|
66
|
+
'animationEasingUpdate',
|
|
67
|
+
'animationDelayUpdate',
|
|
68
|
+
'tooltip',
|
|
69
|
+
],
|
|
70
|
+
providers: [
|
|
71
|
+
{
|
|
72
|
+
provide: TdSeriesDirective,
|
|
73
|
+
useExisting: forwardRef((() => TdChartSeriesPieComponent)),
|
|
74
|
+
},
|
|
75
|
+
],
|
|
76
|
+
}]
|
|
77
|
+
}], function () { return [{ type: i1.TdChartOptionsService }]; }, { legendHoverLink: [{
|
|
78
|
+
type: Input
|
|
79
|
+
}], hoverAnimation: [{
|
|
80
|
+
type: Input
|
|
81
|
+
}], hoverOffset: [{
|
|
82
|
+
type: Input
|
|
83
|
+
}], selectedMode: [{
|
|
84
|
+
type: Input
|
|
85
|
+
}], selectedOffset: [{
|
|
86
|
+
type: Input
|
|
87
|
+
}], clockwise: [{
|
|
88
|
+
type: Input
|
|
89
|
+
}], startAngle: [{
|
|
90
|
+
type: Input
|
|
91
|
+
}], minAngle: [{
|
|
92
|
+
type: Input
|
|
93
|
+
}], minShowLabelAngle: [{
|
|
94
|
+
type: Input
|
|
95
|
+
}], roseType: [{
|
|
96
|
+
type: Input
|
|
97
|
+
}], avoidLabelOverlap: [{
|
|
98
|
+
type: Input
|
|
99
|
+
}], stillShowZeroSum: [{
|
|
100
|
+
type: Input
|
|
101
|
+
}], cursor: [{
|
|
102
|
+
type: Input
|
|
103
|
+
}], labelLine: [{
|
|
104
|
+
type: Input
|
|
105
|
+
}], label: [{
|
|
106
|
+
type: Input
|
|
107
|
+
}], itemStyle: [{
|
|
108
|
+
type: Input
|
|
109
|
+
}], emphasis: [{
|
|
110
|
+
type: Input
|
|
111
|
+
}], seriesLayoutBy: [{
|
|
112
|
+
type: Input
|
|
113
|
+
}], datasetIndex: [{
|
|
114
|
+
type: Input
|
|
115
|
+
}], markPoint: [{
|
|
116
|
+
type: Input
|
|
117
|
+
}], markLine: [{
|
|
118
|
+
type: Input
|
|
119
|
+
}], markArea: [{
|
|
120
|
+
type: Input
|
|
121
|
+
}], zlevel: [{
|
|
122
|
+
type: Input
|
|
123
|
+
}], z: [{
|
|
124
|
+
type: Input
|
|
125
|
+
}], center: [{
|
|
126
|
+
type: Input
|
|
127
|
+
}], radius: [{
|
|
128
|
+
type: Input
|
|
129
|
+
}] }); })();
|
|
130
|
+
|
|
131
|
+
const PIE_MODULE_COMPONENTS = [TdChartSeriesPieComponent];
|
|
132
|
+
class CovalentPieEchartsModule {
|
|
133
|
+
}
|
|
134
|
+
/** @nocollapse */ /** @nocollapse */ CovalentPieEchartsModule.ɵfac = function CovalentPieEchartsModule_Factory(t) { return new (t || CovalentPieEchartsModule)(); };
|
|
135
|
+
/** @nocollapse */ /** @nocollapse */ CovalentPieEchartsModule.ɵmod = /** @pureOrBreakMyCode */ i0.ɵɵdefineNgModule({ type: CovalentPieEchartsModule });
|
|
136
|
+
/** @nocollapse */ /** @nocollapse */ CovalentPieEchartsModule.ɵinj = /** @pureOrBreakMyCode */ i0.ɵɵdefineInjector({ imports: [[CommonModule]] });
|
|
137
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(CovalentPieEchartsModule, [{
|
|
138
|
+
type: NgModule,
|
|
139
|
+
args: [{
|
|
140
|
+
imports: [CommonModule],
|
|
141
|
+
declarations: [PIE_MODULE_COMPONENTS],
|
|
142
|
+
exports: [PIE_MODULE_COMPONENTS],
|
|
143
|
+
}]
|
|
144
|
+
}], null, null); })();
|
|
145
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(CovalentPieEchartsModule, { declarations: [TdChartSeriesPieComponent], imports: [CommonModule], exports: [TdChartSeriesPieComponent] }); })();
|
|
146
|
+
|
|
147
|
+
/**
|
|
148
|
+
* Generated bundle index. Do not edit.
|
|
149
|
+
*/
|
|
150
|
+
|
|
151
|
+
export { CovalentPieEchartsModule, PIE_MODULE_COMPONENTS, TdChartSeriesPieComponent };
|
|
152
|
+
//# sourceMappingURL=covalent-echarts-pie.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"covalent-echarts-pie.mjs","sources":["../../../../src/platform/echarts/pie/pie.component.ts","../../../../src/platform/echarts/pie/pie.module.ts","../../../../src/platform/echarts/pie/covalent-echarts-pie.ts"],"sourcesContent":["import { Component, Input, ChangeDetectionStrategy, forwardRef } from '@angular/core';\n\nimport {\n TdChartOptionsService,\n ITdItemStyle,\n ITdEmphasis,\n TdSeriesLayoutBy,\n ITdMarkPoint,\n ITdMarkLine,\n ITdMarkArea,\n ITdSeries,\n ITdLabel,\n ITdLabelLine,\n TdSeriesDirective,\n} from '@covalent/echarts/base';\n\nexport interface ITdPieSeries extends ITdSeries {\n legendHoverLink?: boolean;\n hoverAnimation?: boolean;\n hoverOffset?: number;\n selectedMode?: boolean | string;\n selectedOffset?: number;\n clockwise?: boolean;\n startAngle?: number;\n minAngle?: number;\n minShowLabelAngle?: number;\n roseType?: boolean | string;\n avoidLabelOverlap?: boolean;\n stillShowZeroSum?: boolean;\n cursor?: string;\n labelLine?: ITdLabelLine;\n Label?: ITdLabel;\n itemStyle?: ITdItemStyle;\n emphasis?: ITdEmphasis;\n seriesLayoutBy?: TdSeriesLayoutBy;\n datasetIndex?: number;\n data?: any[];\n markPoint?: ITdMarkPoint;\n markLine?: ITdMarkLine;\n markArea?: ITdMarkArea;\n Zlevel?: 0;\n z?: number;\n center?: object;\n radius?: number | string | any[];\n silent?: boolean;\n}\n\n@Component({\n selector: 'td-chart-series[td-pie]',\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(() => TdChartSeriesPieComponent),\n },\n ],\n})\nexport class TdChartSeriesPieComponent extends TdSeriesDirective implements ITdPieSeries {\n @Input() legendHoverLink: boolean;\n @Input() hoverAnimation: boolean;\n @Input() hoverOffset: number;\n @Input() selectedMode: boolean | string;\n @Input() selectedOffset: number;\n @Input() clockwise: boolean;\n @Input() startAngle: number;\n @Input() minAngle: number;\n @Input() minShowLabelAngle: number;\n @Input() roseType: boolean | string;\n @Input() avoidLabelOverlap: boolean;\n @Input() stillShowZeroSum: boolean;\n @Input() cursor: string;\n @Input() labelLine: object;\n @Input() label: any;\n @Input() itemStyle: ITdItemStyle;\n @Input() emphasis: ITdEmphasis;\n @Input() seriesLayoutBy: TdSeriesLayoutBy;\n @Input() datasetIndex: number;\n @Input() markPoint: ITdMarkPoint;\n @Input() markLine: ITdMarkLine;\n @Input() markArea: ITdMarkArea;\n @Input() zlevel: number;\n @Input() z: number;\n @Input() center: object;\n @Input() radius: number | string | any[];\n\n constructor(_optionsService: TdChartOptionsService) {\n super('pie', _optionsService);\n }\n\n getConfig(): any {\n return {\n legendHoverLink: this.legendHoverLink,\n label: this.label,\n itemStyle: this.itemStyle,\n emphasis: this.emphasis,\n selectedMode: this.selectedMode,\n selectedOffset: this.selectedOffset,\n clockwise: this.clockwise,\n startAngle: this.startAngle,\n minAngle: this.minAngle,\n minShowLabelAngle: this.minShowLabelAngle,\n roseType: this.roseType,\n avoidLabelOverlap: this.avoidLabelOverlap,\n stillShowZeroSum: this.stillShowZeroSum,\n cursor: this.cursor,\n labelLine: this.labelLine,\n seriesLayoutBy: this.seriesLayoutBy,\n datasetIndex: this.datasetIndex,\n markPoint: this.markPoint,\n markLine: this.markLine,\n markArea: this.markArea,\n zlevel: this.zlevel,\n z: this.z,\n center: this.center,\n radius: this.radius,\n };\n }\n}\n","import { NgModule, Type } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { TdChartSeriesPieComponent } from './pie.component';\n\nexport const PIE_MODULE_COMPONENTS: Type<any>[] = [TdChartSeriesPieComponent];\n\n@NgModule({\n imports: [CommonModule],\n declarations: [PIE_MODULE_COMPONENTS],\n exports: [PIE_MODULE_COMPONENTS],\n})\nexport class CovalentPieEchartsModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { forwardRef, Component, ChangeDetectionStrategy, Input, NgModule } from '@angular/core';
|
|
3
|
+
import { CommonModule } from '@angular/common';
|
|
4
|
+
import * as i1 from '@covalent/echarts/base';
|
|
5
|
+
import { TdSeriesDirective } from '@covalent/echarts/base';
|
|
6
|
+
|
|
7
|
+
const _c0 = ["td-sankey", ""];
|
|
8
|
+
class TdChartSeriesSankeyComponent extends TdSeriesDirective {
|
|
9
|
+
constructor(_optionsService) {
|
|
10
|
+
super('sankey', _optionsService);
|
|
11
|
+
}
|
|
12
|
+
getConfig() {
|
|
13
|
+
return {
|
|
14
|
+
zlevel: this.zlevel,
|
|
15
|
+
z: this.z,
|
|
16
|
+
left: this.left,
|
|
17
|
+
top: this.top,
|
|
18
|
+
right: this.right,
|
|
19
|
+
bottom: this.bottom,
|
|
20
|
+
width: this.width,
|
|
21
|
+
height: this.height,
|
|
22
|
+
nodeWidth: this.nodeWidth,
|
|
23
|
+
nodeGap: this.nodeGap,
|
|
24
|
+
layoutIterations: this.layoutIterations,
|
|
25
|
+
orient: this.orient,
|
|
26
|
+
draggable: this.draggable,
|
|
27
|
+
focusNodeAdjacency: this.focusNodeAdjacency,
|
|
28
|
+
label: this.label,
|
|
29
|
+
itemStyle: this.itemStyle,
|
|
30
|
+
lineStyle: this.lineStyle,
|
|
31
|
+
emphasis: this.emphasis,
|
|
32
|
+
nodes: this.nodes,
|
|
33
|
+
links: this.links,
|
|
34
|
+
edges: this.edges,
|
|
35
|
+
silent: this.silent,
|
|
36
|
+
};
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
/** @nocollapse */ /** @nocollapse */ TdChartSeriesSankeyComponent.ɵfac = function TdChartSeriesSankeyComponent_Factory(t) { return new (t || TdChartSeriesSankeyComponent)(i0.ɵɵdirectiveInject(i1.TdChartOptionsService)); };
|
|
40
|
+
/** @nocollapse */ /** @nocollapse */ TdChartSeriesSankeyComponent.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: TdChartSeriesSankeyComponent, selectors: [["td-chart-series", "td-sankey", ""]], inputs: { config: "config", id: "id", name: "name", color: "color", data: "data", animation: "animation", animationThreshold: "animationThreshold", animationDuration: "animationDuration", animationEasing: "animationEasing", animationDelay: "animationDelay", animationDurationUpdate: "animationDurationUpdate", animationEasingUpdate: "animationEasingUpdate", animationDelayUpdate: "animationDelayUpdate", tooltip: "tooltip", zlevel: "zlevel", z: "z", left: "left", top: "top", right: "right", bottom: "bottom", width: "width", height: "height", 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" }, features: [i0.ɵɵProvidersFeature([
|
|
41
|
+
{
|
|
42
|
+
provide: TdSeriesDirective,
|
|
43
|
+
useExisting: forwardRef((() => TdChartSeriesSankeyComponent)),
|
|
44
|
+
},
|
|
45
|
+
]), i0.ɵɵInheritDefinitionFeature], attrs: _c0, decls: 0, vars: 0, template: function TdChartSeriesSankeyComponent_Template(rf, ctx) { }, encapsulation: 2, changeDetection: 0 });
|
|
46
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TdChartSeriesSankeyComponent, [{
|
|
47
|
+
type: Component,
|
|
48
|
+
args: [{
|
|
49
|
+
selector: 'td-chart-series[td-sankey]',
|
|
50
|
+
template: '',
|
|
51
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
52
|
+
inputs: [
|
|
53
|
+
'config',
|
|
54
|
+
'id',
|
|
55
|
+
'name',
|
|
56
|
+
'color',
|
|
57
|
+
'data',
|
|
58
|
+
'animation',
|
|
59
|
+
'animationThreshold',
|
|
60
|
+
'animationDuration',
|
|
61
|
+
'animationEasing',
|
|
62
|
+
'animationDelay',
|
|
63
|
+
'animationDurationUpdate',
|
|
64
|
+
'animationEasingUpdate',
|
|
65
|
+
'animationDelayUpdate',
|
|
66
|
+
'tooltip',
|
|
67
|
+
],
|
|
68
|
+
providers: [
|
|
69
|
+
{
|
|
70
|
+
provide: TdSeriesDirective,
|
|
71
|
+
useExisting: forwardRef((() => TdChartSeriesSankeyComponent)),
|
|
72
|
+
},
|
|
73
|
+
],
|
|
74
|
+
}]
|
|
75
|
+
}], function () { return [{ type: i1.TdChartOptionsService }]; }, { zlevel: [{
|
|
76
|
+
type: Input
|
|
77
|
+
}], z: [{
|
|
78
|
+
type: Input
|
|
79
|
+
}], left: [{
|
|
80
|
+
type: Input
|
|
81
|
+
}], top: [{
|
|
82
|
+
type: Input
|
|
83
|
+
}], right: [{
|
|
84
|
+
type: Input
|
|
85
|
+
}], bottom: [{
|
|
86
|
+
type: Input
|
|
87
|
+
}], width: [{
|
|
88
|
+
type: Input
|
|
89
|
+
}], height: [{
|
|
90
|
+
type: Input
|
|
91
|
+
}], nodeWidth: [{
|
|
92
|
+
type: Input
|
|
93
|
+
}], nodeGap: [{
|
|
94
|
+
type: Input
|
|
95
|
+
}], layoutIterations: [{
|
|
96
|
+
type: Input
|
|
97
|
+
}], orient: [{
|
|
98
|
+
type: Input
|
|
99
|
+
}], draggable: [{
|
|
100
|
+
type: Input
|
|
101
|
+
}], focusNodeAdjacency: [{
|
|
102
|
+
type: Input
|
|
103
|
+
}], label: [{
|
|
104
|
+
type: Input
|
|
105
|
+
}], itemStyle: [{
|
|
106
|
+
type: Input
|
|
107
|
+
}], lineStyle: [{
|
|
108
|
+
type: Input
|
|
109
|
+
}], emphasis: [{
|
|
110
|
+
type: Input
|
|
111
|
+
}], nodes: [{
|
|
112
|
+
type: Input
|
|
113
|
+
}], links: [{
|
|
114
|
+
type: Input
|
|
115
|
+
}], edges: [{
|
|
116
|
+
type: Input
|
|
117
|
+
}], silent: [{
|
|
118
|
+
type: Input
|
|
119
|
+
}] }); })();
|
|
120
|
+
|
|
121
|
+
const SANKEY_MODULE_COMPONENTS = [TdChartSeriesSankeyComponent];
|
|
122
|
+
class CovalentSankeyEchartsModule {
|
|
123
|
+
}
|
|
124
|
+
/** @nocollapse */ /** @nocollapse */ CovalentSankeyEchartsModule.ɵfac = function CovalentSankeyEchartsModule_Factory(t) { return new (t || CovalentSankeyEchartsModule)(); };
|
|
125
|
+
/** @nocollapse */ /** @nocollapse */ CovalentSankeyEchartsModule.ɵmod = /** @pureOrBreakMyCode */ i0.ɵɵdefineNgModule({ type: CovalentSankeyEchartsModule });
|
|
126
|
+
/** @nocollapse */ /** @nocollapse */ CovalentSankeyEchartsModule.ɵinj = /** @pureOrBreakMyCode */ i0.ɵɵdefineInjector({ imports: [[CommonModule]] });
|
|
127
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(CovalentSankeyEchartsModule, [{
|
|
128
|
+
type: NgModule,
|
|
129
|
+
args: [{
|
|
130
|
+
imports: [CommonModule],
|
|
131
|
+
declarations: [SANKEY_MODULE_COMPONENTS],
|
|
132
|
+
exports: [SANKEY_MODULE_COMPONENTS],
|
|
133
|
+
}]
|
|
134
|
+
}], null, null); })();
|
|
135
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(CovalentSankeyEchartsModule, { declarations: [TdChartSeriesSankeyComponent], imports: [CommonModule], exports: [TdChartSeriesSankeyComponent] }); })();
|
|
136
|
+
|
|
137
|
+
/**
|
|
138
|
+
* Generated bundle index. Do not edit.
|
|
139
|
+
*/
|
|
140
|
+
|
|
141
|
+
export { CovalentSankeyEchartsModule, SANKEY_MODULE_COMPONENTS, TdChartSeriesSankeyComponent };
|
|
142
|
+
//# sourceMappingURL=covalent-echarts-sankey.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"covalent-echarts-sankey.mjs","sources":["../../../../src/platform/echarts/sankey/sankey.component.ts","../../../../src/platform/echarts/sankey/sankey.module.ts","../../../../src/platform/echarts/sankey/covalent-echarts-sankey.ts"],"sourcesContent":["import { Component, Input, ChangeDetectionStrategy, forwardRef } from '@angular/core';\n\nimport {\n TdChartOptionsService,\n ITdLabel,\n ITdItemStyle,\n ITdEmphasis,\n ITdSeries,\n TdSeriesDirective,\n ITdShadow,\n ITdLineCurveStyle,\n} from '@covalent/echarts/base';\n\nexport type TdSankeyOrient = 'horizontal' | 'vertical';\n\nexport type TdSankeyFocusNodeAdjacency = boolean | 'allEdges' | 'outEdges' | 'inEdges';\n\nexport interface ITdSankeyEmphasisLineStyle extends ITdShadow {\n color?: any;\n opacity?: number;\n curveness?: number;\n}\n\nexport interface ITdSankeyEmphasis extends ITdEmphasis {\n lineStyle: ITdSankeyEmphasisLineStyle;\n}\n\nexport interface ITdSankeySeries 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 nodeWidth?: number;\n nodeGap?: number;\n layoutIterations?: number;\n orient?: TdSankeyOrient;\n draggable?: boolean;\n focusNodeAdjacency?: TdSankeyFocusNodeAdjacency;\n label?: ITdLabel;\n itemStyle?: ITdItemStyle;\n lineStyle?: ITdLineCurveStyle;\n emphasis?: ITdEmphasis;\n data?: any[];\n nodes?: any[];\n links?: any[];\n edges?: any[];\n silent?: boolean;\n}\n\n@Component({\n selector: 'td-chart-series[td-sankey]',\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(() => TdChartSeriesSankeyComponent),\n },\n ],\n})\nexport class TdChartSeriesSankeyComponent extends TdSeriesDirective implements ITdSankeySeries {\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() nodeWidth: number;\n @Input() nodeGap: number;\n @Input() layoutIterations: number;\n @Input() orient: TdSankeyOrient;\n @Input() draggable: boolean;\n @Input() focusNodeAdjacency: TdSankeyFocusNodeAdjacency;\n @Input() label: ITdLabel;\n @Input() itemStyle: ITdItemStyle;\n @Input() lineStyle: ITdLineCurveStyle;\n @Input() emphasis: ITdEmphasis;\n @Input() nodes: any[];\n @Input() links: any[];\n @Input() edges: any[];\n @Input() silent: boolean;\n\n constructor(_optionsService: TdChartOptionsService) {\n super('sankey', _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 nodeWidth: this.nodeWidth,\n nodeGap: this.nodeGap,\n layoutIterations: this.layoutIterations,\n orient: this.orient,\n draggable: this.draggable,\n focusNodeAdjacency: this.focusNodeAdjacency,\n label: this.label,\n itemStyle: this.itemStyle,\n lineStyle: this.lineStyle,\n emphasis: this.emphasis,\n nodes: this.nodes,\n links: this.links,\n edges: this.edges,\n silent: this.silent,\n };\n }\n}\n","import { NgModule, Type } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { TdChartSeriesSankeyComponent } from './sankey.component';\n\nexport const SANKEY_MODULE_COMPONENTS: Type<any>[] = [TdChartSeriesSankeyComponent];\n\n@NgModule({\n imports: [CommonModule],\n declarations: [SANKEY_MODULE_COMPONENTS],\n exports: [SANKEY_MODULE_COMPONENTS],\n})\nexport class CovalentSankeyEchartsModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { forwardRef, Component, ChangeDetectionStrategy, Input, NgModule } from '@angular/core';
|
|
3
|
+
import { CommonModule } from '@angular/common';
|
|
4
|
+
import * as i1 from '@covalent/echarts/base';
|
|
5
|
+
import { TdSeriesDirective } from '@covalent/echarts/base';
|
|
6
|
+
|
|
7
|
+
const _c0 = ["td-scatter", ""];
|
|
8
|
+
class TdChartSeriesScatterComponent extends TdSeriesDirective {
|
|
9
|
+
constructor(_optionsService) {
|
|
10
|
+
super('scatter', _optionsService);
|
|
11
|
+
}
|
|
12
|
+
getConfig() {
|
|
13
|
+
return {
|
|
14
|
+
coordinateSystem: this.coordinateSystem,
|
|
15
|
+
xAxisIndex: this.xAxisIndex,
|
|
16
|
+
yAxisIndex: this.yAxisIndex,
|
|
17
|
+
polarIndex: this.polarIndex,
|
|
18
|
+
geoIndex: this.geoIndex,
|
|
19
|
+
calendarIndex: this.calendarIndex,
|
|
20
|
+
hoverAnimation: this.hoverAnimation,
|
|
21
|
+
legendHoverLink: this.legendHoverLink,
|
|
22
|
+
symbol: this.symbol,
|
|
23
|
+
symbolSize: this.symbolSize,
|
|
24
|
+
symbolRotate: this.symbolRotate,
|
|
25
|
+
symbolKeepAspect: this.symbolKeepAspect,
|
|
26
|
+
symbolOffset: this.symbolOffset,
|
|
27
|
+
large: this.large,
|
|
28
|
+
largeThreshold: this.largeThreshold,
|
|
29
|
+
cursor: this.cursor,
|
|
30
|
+
label: this.label,
|
|
31
|
+
itemStyle: this.itemStyle,
|
|
32
|
+
emphasis: this.emphasis,
|
|
33
|
+
progressive: this.progressive,
|
|
34
|
+
progressiveThreshold: this.progressiveThreshold,
|
|
35
|
+
dimensions: this.dimensions,
|
|
36
|
+
encode: this.encode,
|
|
37
|
+
seriesLayoutBy: this.seriesLayoutBy,
|
|
38
|
+
datasetIndex: this.datasetIndex,
|
|
39
|
+
markPoint: this.markPoint,
|
|
40
|
+
markLine: this.markLine,
|
|
41
|
+
markArea: this.markArea,
|
|
42
|
+
zlevel: this.zlevel,
|
|
43
|
+
z: this.z,
|
|
44
|
+
silent: this.silent,
|
|
45
|
+
};
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
/** @nocollapse */ /** @nocollapse */ TdChartSeriesScatterComponent.ɵfac = function TdChartSeriesScatterComponent_Factory(t) { return new (t || TdChartSeriesScatterComponent)(i0.ɵɵdirectiveInject(i1.TdChartOptionsService)); };
|
|
49
|
+
/** @nocollapse */ /** @nocollapse */ TdChartSeriesScatterComponent.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: TdChartSeriesScatterComponent, selectors: [["td-chart-series", "td-scatter", ""]], inputs: { config: "config", id: "id", name: "name", color: "color", data: "data", animation: "animation", animationThreshold: "animationThreshold", animationDuration: "animationDuration", animationEasing: "animationEasing", animationDelay: "animationDelay", animationDurationUpdate: "animationDurationUpdate", animationEasingUpdate: "animationEasingUpdate", animationDelayUpdate: "animationDelayUpdate", tooltip: "tooltip", coordinateSystem: "coordinateSystem", xAxisIndex: "xAxisIndex", yAxisIndex: "yAxisIndex", 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" }, features: [i0.ɵɵProvidersFeature([
|
|
50
|
+
{
|
|
51
|
+
provide: TdSeriesDirective,
|
|
52
|
+
useExisting: forwardRef((() => TdChartSeriesScatterComponent)),
|
|
53
|
+
},
|
|
54
|
+
]), i0.ɵɵInheritDefinitionFeature], attrs: _c0, decls: 0, vars: 0, template: function TdChartSeriesScatterComponent_Template(rf, ctx) { }, encapsulation: 2, changeDetection: 0 });
|
|
55
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TdChartSeriesScatterComponent, [{
|
|
56
|
+
type: Component,
|
|
57
|
+
args: [{
|
|
58
|
+
selector: 'td-chart-series[td-scatter]',
|
|
59
|
+
template: '',
|
|
60
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
61
|
+
inputs: [
|
|
62
|
+
'config',
|
|
63
|
+
'id',
|
|
64
|
+
'name',
|
|
65
|
+
'color',
|
|
66
|
+
'data',
|
|
67
|
+
'animation',
|
|
68
|
+
'animationThreshold',
|
|
69
|
+
'animationDuration',
|
|
70
|
+
'animationEasing',
|
|
71
|
+
'animationDelay',
|
|
72
|
+
'animationDurationUpdate',
|
|
73
|
+
'animationEasingUpdate',
|
|
74
|
+
'animationDelayUpdate',
|
|
75
|
+
'tooltip',
|
|
76
|
+
],
|
|
77
|
+
providers: [
|
|
78
|
+
{
|
|
79
|
+
provide: TdSeriesDirective,
|
|
80
|
+
useExisting: forwardRef((() => TdChartSeriesScatterComponent)),
|
|
81
|
+
},
|
|
82
|
+
],
|
|
83
|
+
}]
|
|
84
|
+
}], function () { return [{ type: i1.TdChartOptionsService }]; }, { coordinateSystem: [{
|
|
85
|
+
type: Input
|
|
86
|
+
}], xAxisIndex: [{
|
|
87
|
+
type: Input
|
|
88
|
+
}], yAxisIndex: [{
|
|
89
|
+
type: Input
|
|
90
|
+
}], polarIndex: [{
|
|
91
|
+
type: Input
|
|
92
|
+
}], geoIndex: [{
|
|
93
|
+
type: Input
|
|
94
|
+
}], calendarIndex: [{
|
|
95
|
+
type: Input
|
|
96
|
+
}], hoverAnimation: [{
|
|
97
|
+
type: Input
|
|
98
|
+
}], legendHoverLink: [{
|
|
99
|
+
type: Input
|
|
100
|
+
}], symbol: [{
|
|
101
|
+
type: Input
|
|
102
|
+
}], symbolSize: [{
|
|
103
|
+
type: Input
|
|
104
|
+
}], symbolRotate: [{
|
|
105
|
+
type: Input
|
|
106
|
+
}], symbolKeepAspect: [{
|
|
107
|
+
type: Input
|
|
108
|
+
}], symbolOffset: [{
|
|
109
|
+
type: Input
|
|
110
|
+
}], large: [{
|
|
111
|
+
type: Input
|
|
112
|
+
}], largeThreshold: [{
|
|
113
|
+
type: Input
|
|
114
|
+
}], cursor: [{
|
|
115
|
+
type: Input
|
|
116
|
+
}], label: [{
|
|
117
|
+
type: Input
|
|
118
|
+
}], itemStyle: [{
|
|
119
|
+
type: Input
|
|
120
|
+
}], emphasis: [{
|
|
121
|
+
type: Input
|
|
122
|
+
}], progressive: [{
|
|
123
|
+
type: Input
|
|
124
|
+
}], progressiveThreshold: [{
|
|
125
|
+
type: Input
|
|
126
|
+
}], dimensions: [{
|
|
127
|
+
type: Input
|
|
128
|
+
}], encode: [{
|
|
129
|
+
type: Input
|
|
130
|
+
}], seriesLayoutBy: [{
|
|
131
|
+
type: Input
|
|
132
|
+
}], datasetIndex: [{
|
|
133
|
+
type: Input
|
|
134
|
+
}], markPoint: [{
|
|
135
|
+
type: Input
|
|
136
|
+
}], markLine: [{
|
|
137
|
+
type: Input
|
|
138
|
+
}], markArea: [{
|
|
139
|
+
type: Input
|
|
140
|
+
}], zlevel: [{
|
|
141
|
+
type: Input
|
|
142
|
+
}], z: [{
|
|
143
|
+
type: Input
|
|
144
|
+
}], silent: [{
|
|
145
|
+
type: Input
|
|
146
|
+
}] }); })();
|
|
147
|
+
|
|
148
|
+
const SCATTER_MODULE_COMPONENTS = [TdChartSeriesScatterComponent];
|
|
149
|
+
class CovalentScatterEchartsModule {
|
|
150
|
+
}
|
|
151
|
+
/** @nocollapse */ /** @nocollapse */ CovalentScatterEchartsModule.ɵfac = function CovalentScatterEchartsModule_Factory(t) { return new (t || CovalentScatterEchartsModule)(); };
|
|
152
|
+
/** @nocollapse */ /** @nocollapse */ CovalentScatterEchartsModule.ɵmod = /** @pureOrBreakMyCode */ i0.ɵɵdefineNgModule({ type: CovalentScatterEchartsModule });
|
|
153
|
+
/** @nocollapse */ /** @nocollapse */ CovalentScatterEchartsModule.ɵinj = /** @pureOrBreakMyCode */ i0.ɵɵdefineInjector({ imports: [[CommonModule]] });
|
|
154
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(CovalentScatterEchartsModule, [{
|
|
155
|
+
type: NgModule,
|
|
156
|
+
args: [{
|
|
157
|
+
imports: [CommonModule],
|
|
158
|
+
declarations: [SCATTER_MODULE_COMPONENTS],
|
|
159
|
+
exports: [SCATTER_MODULE_COMPONENTS],
|
|
160
|
+
}]
|
|
161
|
+
}], null, null); })();
|
|
162
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(CovalentScatterEchartsModule, { declarations: [TdChartSeriesScatterComponent], imports: [CommonModule], exports: [TdChartSeriesScatterComponent] }); })();
|
|
163
|
+
|
|
164
|
+
/**
|
|
165
|
+
* Generated bundle index. Do not edit.
|
|
166
|
+
*/
|
|
167
|
+
|
|
168
|
+
export { CovalentScatterEchartsModule, SCATTER_MODULE_COMPONENTS, TdChartSeriesScatterComponent };
|
|
169
|
+
//# sourceMappingURL=covalent-echarts-scatter.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"covalent-echarts-scatter.mjs","sources":["../../../../src/platform/echarts/scatter/scatter.component.ts","../../../../src/platform/echarts/scatter/scatter.module.ts","../../../../src/platform/echarts/scatter/covalent-echarts-scatter.ts"],"sourcesContent":["import { Component, Input, ChangeDetectionStrategy, forwardRef } from '@angular/core';\n\nimport {\n TdChartOptionsService,\n TdCoordinateSystem,\n TdMarkPointSymbol,\n ITdMarkPoint,\n ITdItemStyle,\n ITdLabel,\n ITdEmphasis,\n TdSeriesLayoutBy,\n ITdMarkLine,\n ITdMarkArea,\n TdSeriesDirective,\n ITdSeries,\n} from '@covalent/echarts/base';\n\nexport interface ITdScatterSeries extends ITdSeries {\n coordinateSystem?: TdCoordinateSystem;\n xAxisIndex?: number;\n yAxisIndex?: number;\n polarIndex?: number;\n geoIndex?: number;\n calendarIndex?: number;\n hoverAnimation?: boolean;\n legendHoverLink?: boolean;\n symbol?: TdMarkPointSymbol | string;\n symbolSize?: number | any[] | Function;\n symbolRotate?: number;\n symbolKeepAspect?: boolean;\n symbolOffset?: any[];\n large?: boolean;\n largeThreshold?: number;\n cursor?: string;\n connectNulls?: boolean;\n clipOverflow?: boolean;\n step?: boolean;\n label?: ITdLabel;\n itemStyle?: any;\n emphasis?: ITdEmphasis;\n progressive?: number;\n progressiveThreshold?: number;\n dimensions?: any[];\n encode?: any;\n seriesLayoutBy?: TdSeriesLayoutBy;\n datasetIndex?: number;\n data?: any[];\n markPoint?: ITdMarkPoint;\n markLine?: ITdMarkLine;\n markArea?: ITdMarkArea;\n zlevel?: number;\n z?: number;\n silent?: boolean;\n}\n\n@Component({\n selector: 'td-chart-series[td-scatter]',\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(() => TdChartSeriesScatterComponent),\n },\n ],\n})\nexport class TdChartSeriesScatterComponent extends TdSeriesDirective implements ITdScatterSeries {\n @Input() coordinateSystem: TdCoordinateSystem;\n @Input() xAxisIndex: number;\n @Input() yAxisIndex: number;\n @Input() polarIndex: number;\n @Input() geoIndex: number;\n @Input() calendarIndex: number;\n @Input() hoverAnimation: boolean;\n @Input() legendHoverLink: boolean;\n @Input() symbol: TdMarkPointSymbol | string;\n @Input() symbolSize: number | any[] | Function;\n @Input() symbolRotate: number;\n @Input() symbolKeepAspect: boolean;\n @Input() symbolOffset: any[];\n @Input() large: boolean;\n @Input() largeThreshold: number;\n @Input() cursor: string;\n @Input() label: ITdLabel;\n @Input() itemStyle: ITdItemStyle;\n @Input() emphasis: ITdEmphasis;\n @Input() progressive: number;\n @Input() progressiveThreshold: number;\n @Input() dimensions: any[];\n @Input() encode: any;\n @Input() seriesLayoutBy: TdSeriesLayoutBy;\n @Input() datasetIndex: number;\n @Input() markPoint: ITdMarkPoint;\n @Input() markLine: ITdMarkLine;\n @Input() markArea: ITdMarkArea;\n @Input() zlevel: number;\n @Input() z: number;\n @Input() silent: boolean;\n\n constructor(_optionsService: TdChartOptionsService) {\n super('scatter', _optionsService);\n }\n\n getConfig(): any {\n return {\n coordinateSystem: this.coordinateSystem,\n xAxisIndex: this.xAxisIndex,\n yAxisIndex: this.yAxisIndex,\n polarIndex: this.polarIndex,\n geoIndex: this.geoIndex,\n calendarIndex: this.calendarIndex,\n hoverAnimation: this.hoverAnimation,\n legendHoverLink: this.legendHoverLink,\n symbol: this.symbol,\n symbolSize: this.symbolSize,\n symbolRotate: this.symbolRotate,\n symbolKeepAspect: this.symbolKeepAspect,\n symbolOffset: this.symbolOffset,\n large: this.large,\n largeThreshold: this.largeThreshold,\n cursor: this.cursor,\n label: this.label,\n itemStyle: this.itemStyle,\n emphasis: this.emphasis,\n progressive: this.progressive,\n progressiveThreshold: this.progressiveThreshold,\n dimensions: this.dimensions,\n encode: this.encode,\n seriesLayoutBy: this.seriesLayoutBy,\n datasetIndex: this.datasetIndex,\n markPoint: this.markPoint,\n markLine: this.markLine,\n markArea: this.markArea,\n zlevel: this.zlevel,\n z: this.z,\n silent: this.silent,\n };\n }\n}\n","import { NgModule, Type } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { TdChartSeriesScatterComponent } from './scatter.component';\n\nexport const SCATTER_MODULE_COMPONENTS: Type<any>[] = [TdChartSeriesScatterComponent];\n\n@NgModule({\n imports: [CommonModule],\n declarations: [SCATTER_MODULE_COMPONENTS],\n exports: [SCATTER_MODULE_COMPONENTS],\n})\nexport class CovalentScatterEchartsModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;;;;MAmFa,6BAA8B,SAAQ,iBAAiB;IAiClE,YAAY,eAAsC;QAChD,KAAK,CAAC,SAAS,EAAE,eAAe,CAAC,CAAC;KACnC;IAED,SAAS;QACP,OAAO;YACL,gBAAgB,EAAE,IAAI,CAAC,gBAAgB;YACvC,UAAU,EAAE,IAAI,CAAC,UAAU;YAC3B,UAAU,EAAE,IAAI,CAAC,UAAU;YAC3B,UAAU,EAAE,IAAI,CAAC,UAAU;YAC3B,QAAQ,EAAE,IAAI,CAAC,QAAQ;YACvB,aAAa,EAAE,IAAI,CAAC,aAAa;YACjC,cAAc,EAAE,IAAI,CAAC,cAAc;YACnC,eAAe,EAAE,IAAI,CAAC,eAAe;YACrC,MAAM,EAAE,IAAI,CAAC,MAAM;YACnB,UAAU,EAAE,IAAI,CAAC,UAAU;YAC3B,YAAY,EAAE,IAAI,CAAC,YAAY;YAC/B,gBAAgB,EAAE,IAAI,CAAC,gBAAgB;YACvC,YAAY,EAAE,IAAI,CAAC,YAAY;YAC/B,KAAK,EAAE,IAAI,CAAC,KAAK;YACjB,cAAc,EAAE,IAAI,CAAC,cAAc;YACnC,MAAM,EAAE,IAAI,CAAC,MAAM;YACnB,KAAK,EAAE,IAAI,CAAC,KAAK;YACjB,SAAS,EAAE,IAAI,CAAC,SAAS;YACzB,QAAQ,EAAE,IAAI,CAAC,QAAQ;YACvB,WAAW,EAAE,IAAI,CAAC,WAAW;YAC7B,oBAAoB,EAAE,IAAI,CAAC,oBAAoB;YAC/C,UAAU,EAAE,IAAI,CAAC,UAAU;YAC3B,MAAM,EAAE,IAAI,CAAC,MAAM;YACnB,cAAc,EAAE,IAAI,CAAC,cAAc;YACnC,YAAY,EAAE,IAAI,CAAC,YAAY;YAC/B,SAAS,EAAE,IAAI,CAAC,SAAS;YACzB,QAAQ,EAAE,IAAI,CAAC,QAAQ;YACvB,QAAQ,EAAE,IAAI,CAAC,QAAQ;YACvB,MAAM,EAAE,IAAI,CAAC,MAAM;YACnB,CAAC,EAAE,IAAI,CAAC,CAAC;YACT,MAAM,EAAE,IAAI,CAAC,MAAM;SACpB,CAAC;KACH;;gJAvEU,6BAA6B;kIAA7B,6BAA6B,uyCAP7B;YACT;gBACE,OAAO,EAAE,iBAAiB;gBAC1B,WAAW,EAAE,UAAU,EAAC,MAAM,6BAA6B,EAAC;aAC7D;SACF;uFAEU,6BAA6B;cA5BzC,SAAS;eAAC;gBACT,QAAQ,EAAE,6BAA6B;gBACvC,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,EAAC,mCAAmC,EAAC;qBAC7D;iBACF;aACF;wEAEU,gBAAgB;kBAAxB,KAAK;YACG,UAAU;kBAAlB,KAAK;YACG,UAAU;kBAAlB,KAAK;YACG,UAAU;kBAAlB,KAAK;YACG,QAAQ;kBAAhB,KAAK;YACG,aAAa;kBAArB,KAAK;YACG,cAAc;kBAAtB,KAAK;YACG,eAAe;kBAAvB,KAAK;YACG,MAAM;kBAAd,KAAK;YACG,UAAU;kBAAlB,KAAK;YACG,YAAY;kBAApB,KAAK;YACG,gBAAgB;kBAAxB,KAAK;YACG,YAAY;kBAApB,KAAK;YACG,KAAK;kBAAb,KAAK;YACG,cAAc;kBAAtB,KAAK;YACG,MAAM;kBAAd,KAAK;YACG,KAAK;kBAAb,KAAK;YACG,SAAS;kBAAjB,KAAK;YACG,QAAQ;kBAAhB,KAAK;YACG,WAAW;kBAAnB,KAAK;YACG,oBAAoB;kBAA5B,KAAK;YACG,UAAU;kBAAlB,KAAK;YACG,MAAM;kBAAd,KAAK;YACG,cAAc;kBAAtB,KAAK;YACG,YAAY;kBAApB,KAAK;YACG,SAAS;kBAAjB,KAAK;YACG,QAAQ;kBAAhB,KAAK;YACG,QAAQ;kBAAhB,KAAK;YACG,MAAM;kBAAd,KAAK;YACG,CAAC;kBAAT,KAAK;YACG,MAAM;kBAAd,KAAK;;;MC7GK,yBAAyB,GAAgB,CAAC,6BAA6B,EAAE;MAOzE,4BAA4B;;8IAA5B,4BAA4B;gIAA5B,4BAA4B;oIAJ9B,CAAC,YAAY,CAAC;uFAIZ,4BAA4B;cALxC,QAAQ;eAAC;gBACR,OAAO,EAAE,CAAC,YAAY,CAAC;gBACvB,YAAY,EAAE,CAAC,yBAAyB,CAAC;gBACzC,OAAO,EAAE,CAAC,yBAAyB,CAAC;aACrC;;wFACY,4BAA4B,mBAPc,6BAA6B,aAGxE,YAAY,aAH+B,6BAA6B;;ACLpF;;;;;;"}
|