@antv/gpt-vis 0.6.1 → 1.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/README.md +185 -114
- package/README.zh-CN.md +187 -112
- package/dist/cjs/gpt-vis/index.d.ts +115 -0
- package/dist/cjs/gpt-vis/index.js +196 -0
- package/dist/cjs/index.d.ts +57 -13
- package/dist/cjs/index.js +85 -35
- package/dist/cjs/syntax/index.d.ts +2 -0
- package/dist/cjs/{Text/mini-charts/hooks → syntax}/index.js +9 -7
- package/dist/cjs/syntax/parser.d.ts +82 -0
- package/dist/cjs/syntax/parser.js +348 -0
- package/dist/cjs/types/index.d.ts +33 -2
- package/dist/cjs/types/index.js +0 -6
- package/dist/cjs/util/container.d.ts +5 -0
- package/dist/cjs/{utils/map/util.js → util/container.js} +18 -13
- package/dist/cjs/util/theme.d.ts +26 -0
- package/dist/cjs/{theme.js → util/theme.js} +70 -14
- package/dist/cjs/vis/area/index.d.ts +60 -0
- package/dist/cjs/vis/area/index.js +152 -0
- package/dist/cjs/vis/bar/index.d.ts +60 -0
- package/dist/cjs/vis/bar/index.js +123 -0
- package/dist/cjs/vis/boxplot/index.d.ts +59 -0
- package/dist/cjs/vis/boxplot/index.js +111 -0
- package/dist/cjs/vis/column/index.d.ts +60 -0
- package/dist/cjs/vis/column/index.js +122 -0
- package/dist/cjs/vis/dual-axes/index.d.ts +64 -0
- package/dist/cjs/vis/dual-axes/index.js +148 -0
- package/dist/cjs/vis/fishbone-diagram/index.d.ts +35 -0
- package/dist/cjs/vis/fishbone-diagram/index.js +183 -0
- package/dist/cjs/vis/flow-diagram/index.d.ts +27 -0
- package/dist/cjs/vis/flow-diagram/index.js +271 -0
- package/dist/cjs/vis/funnel/index.d.ts +54 -0
- package/dist/cjs/vis/funnel/index.js +190 -0
- package/dist/cjs/vis/histogram/index.d.ts +47 -0
- package/dist/cjs/vis/histogram/index.js +108 -0
- package/dist/cjs/vis/indented-tree/index.d.ts +40 -0
- package/dist/cjs/vis/indented-tree/index.js +375 -0
- package/dist/cjs/vis/line/index.d.ts +59 -0
- package/dist/cjs/vis/line/index.js +105 -0
- package/dist/cjs/vis/liquid/index.d.ts +44 -0
- package/dist/cjs/vis/liquid/index.js +88 -0
- package/dist/cjs/vis/mindmap/index.d.ts +32 -0
- package/dist/cjs/vis/mindmap/index.js +214 -0
- package/dist/cjs/vis/network-graph/index.d.ts +59 -0
- package/dist/cjs/vis/network-graph/index.js +166 -0
- package/dist/cjs/vis/organization-chart/index.d.ts +64 -0
- package/dist/cjs/vis/organization-chart/index.js +191 -0
- package/dist/cjs/vis/pie/index.d.ts +55 -0
- package/dist/cjs/vis/pie/index.js +108 -0
- package/dist/cjs/vis/radar/index.d.ts +58 -0
- package/dist/cjs/vis/radar/index.js +153 -0
- package/dist/cjs/vis/sankey/index.d.ts +56 -0
- package/dist/cjs/vis/sankey/index.js +94 -0
- package/dist/cjs/vis/scatter/index.d.ts +54 -0
- package/dist/cjs/vis/scatter/index.js +95 -0
- package/dist/cjs/vis/summary/index.d.ts +41 -0
- package/dist/cjs/vis/summary/index.js +71 -0
- package/dist/cjs/vis/table/index.d.ts +50 -0
- package/dist/cjs/vis/table/index.js +209 -0
- package/dist/cjs/vis/treemap/index.d.ts +68 -0
- package/dist/cjs/vis/treemap/index.js +106 -0
- package/dist/cjs/vis/venn/index.d.ts +55 -0
- package/dist/cjs/vis/venn/index.js +115 -0
- package/dist/cjs/vis/violin/index.d.ts +59 -0
- package/dist/cjs/vis/violin/index.js +156 -0
- package/dist/cjs/vis/waterfall/index.d.ts +64 -0
- package/dist/cjs/vis/waterfall/index.js +195 -0
- package/dist/cjs/vis/word-cloud/index.d.ts +53 -0
- package/dist/cjs/vis/word-cloud/index.js +90 -0
- package/dist/cjs/vis-wrapper/icons.d.ts +8 -0
- package/dist/cjs/vis-wrapper/icons.js +63 -0
- package/dist/cjs/vis-wrapper/index.d.ts +25 -0
- package/dist/cjs/vis-wrapper/index.js +242 -0
- package/dist/cjs/vis-wrapper/styles.d.ts +8 -0
- package/dist/cjs/vis-wrapper/styles.js +221 -0
- package/dist/esm/gpt-vis/index.d.ts +115 -0
- package/dist/esm/gpt-vis/index.js +245 -0
- package/dist/esm/index.d.ts +57 -13
- package/dist/esm/index.js +28 -15
- package/dist/esm/syntax/index.d.ts +2 -0
- package/dist/esm/syntax/index.js +1 -0
- package/dist/esm/syntax/parser.d.ts +82 -0
- package/dist/esm/syntax/parser.js +559 -0
- package/dist/esm/types/index.d.ts +33 -2
- package/dist/esm/types/index.js +0 -1
- package/dist/esm/util/container.d.ts +5 -0
- package/dist/esm/util/container.js +20 -0
- package/dist/esm/util/theme.d.ts +26 -0
- package/dist/esm/util/theme.js +150 -0
- package/dist/esm/vis/area/index.d.ts +60 -0
- package/dist/esm/vis/area/index.js +231 -0
- package/dist/esm/vis/bar/index.d.ts +60 -0
- package/dist/esm/vis/bar/index.js +204 -0
- package/dist/esm/vis/boxplot/index.d.ts +59 -0
- package/dist/esm/vis/boxplot/index.js +177 -0
- package/dist/esm/vis/column/index.d.ts +60 -0
- package/dist/esm/vis/column/index.js +199 -0
- package/dist/esm/vis/dual-axes/index.d.ts +64 -0
- package/dist/esm/vis/dual-axes/index.js +235 -0
- package/dist/esm/vis/fishbone-diagram/index.d.ts +35 -0
- package/dist/esm/vis/fishbone-diagram/index.js +218 -0
- package/dist/esm/vis/flow-diagram/index.d.ts +27 -0
- package/dist/esm/vis/flow-diagram/index.js +342 -0
- package/dist/esm/vis/funnel/index.d.ts +54 -0
- package/dist/esm/vis/funnel/index.js +247 -0
- package/dist/esm/vis/histogram/index.d.ts +47 -0
- package/dist/esm/vis/histogram/index.js +147 -0
- package/dist/esm/vis/indented-tree/index.d.ts +40 -0
- package/dist/esm/vis/indented-tree/index.js +564 -0
- package/dist/esm/vis/line/index.d.ts +59 -0
- package/dist/esm/vis/line/index.js +173 -0
- package/dist/esm/vis/liquid/index.d.ts +44 -0
- package/dist/esm/vis/liquid/index.js +131 -0
- package/dist/esm/vis/mindmap/index.d.ts +32 -0
- package/dist/esm/vis/mindmap/index.js +315 -0
- package/dist/esm/vis/network-graph/index.d.ts +59 -0
- package/dist/esm/vis/network-graph/index.js +240 -0
- package/dist/esm/vis/organization-chart/index.d.ts +64 -0
- package/dist/esm/vis/organization-chart/index.js +269 -0
- package/dist/esm/vis/pie/index.d.ts +55 -0
- package/dist/esm/vis/pie/index.js +164 -0
- package/dist/esm/vis/radar/index.d.ts +58 -0
- package/dist/esm/vis/radar/index.js +238 -0
- package/dist/esm/vis/sankey/index.d.ts +56 -0
- package/dist/esm/vis/sankey/index.js +136 -0
- package/dist/esm/vis/scatter/index.d.ts +54 -0
- package/dist/esm/vis/scatter/index.js +159 -0
- package/dist/esm/vis/summary/index.d.ts +41 -0
- package/dist/esm/vis/summary/index.js +101 -0
- package/dist/esm/vis/table/index.d.ts +50 -0
- package/dist/esm/vis/table/index.js +167 -0
- package/dist/esm/vis/treemap/index.d.ts +68 -0
- package/dist/esm/vis/treemap/index.js +159 -0
- package/dist/esm/vis/venn/index.d.ts +55 -0
- package/dist/esm/vis/venn/index.js +167 -0
- package/dist/esm/vis/violin/index.d.ts +59 -0
- package/dist/esm/vis/violin/index.js +246 -0
- package/dist/esm/vis/waterfall/index.d.ts +64 -0
- package/dist/esm/vis/waterfall/index.js +263 -0
- package/dist/esm/vis/word-cloud/index.d.ts +53 -0
- package/dist/esm/vis/word-cloud/index.js +129 -0
- package/dist/esm/vis-wrapper/icons.d.ts +8 -0
- package/dist/esm/vis-wrapper/icons.js +29 -0
- package/dist/esm/vis-wrapper/index.d.ts +25 -0
- package/dist/esm/vis-wrapper/index.js +242 -0
- package/dist/esm/vis-wrapper/styles.d.ts +8 -0
- package/dist/esm/vis-wrapper/styles.js +21 -0
- package/dist/umd/index.min.js +1 -1
- package/package.json +18 -59
- package/README.ja-JP.md +0 -164
- package/dist/cjs/Area/index.d.ts +0 -11
- package/dist/cjs/Area/index.js +0 -105
- package/dist/cjs/Bar/index.d.ts +0 -14
- package/dist/cjs/Bar/index.js +0 -101
- package/dist/cjs/Boxplot/index.d.ts +0 -11
- package/dist/cjs/Boxplot/index.js +0 -88
- package/dist/cjs/ChartCodeRender/Loading.d.ts +0 -6
- package/dist/cjs/ChartCodeRender/Loading.js +0 -54
- package/dist/cjs/ChartCodeRender/VisChart.d.ts +0 -19
- package/dist/cjs/ChartCodeRender/VisChart.js +0 -338
- package/dist/cjs/ChartCodeRender/icon.d.ts +0 -10
- package/dist/cjs/ChartCodeRender/icon.js +0 -162
- package/dist/cjs/ChartCodeRender/index.d.ts +0 -8
- package/dist/cjs/ChartCodeRender/index.js +0 -113
- package/dist/cjs/ChartCodeRender/styles.d.ts +0 -19
- package/dist/cjs/ChartCodeRender/styles.js +0 -232
- package/dist/cjs/ChartCodeRender/type.d.ts +0 -176
- package/dist/cjs/ChartCodeRender/type.js +0 -17
- package/dist/cjs/ChartCodeRender/utils.d.ts +0 -1
- package/dist/cjs/ChartCodeRender/utils.js +0 -51
- package/dist/cjs/Column/index.d.ts +0 -14
- package/dist/cjs/Column/index.js +0 -102
- package/dist/cjs/ConfigProvider/context.d.ts +0 -3
- package/dist/cjs/ConfigProvider/context.js +0 -41
- package/dist/cjs/ConfigProvider/hooks/index.d.ts +0 -1
- package/dist/cjs/ConfigProvider/hooks/index.js +0 -23
- package/dist/cjs/ConfigProvider/hooks/useConfig.d.ts +0 -13
- package/dist/cjs/ConfigProvider/hooks/useConfig.js +0 -109
- package/dist/cjs/ConfigProvider/index.d.ts +0 -7
- package/dist/cjs/ConfigProvider/index.js +0 -43
- package/dist/cjs/DualAxes/index.d.ts +0 -20
- package/dist/cjs/DualAxes/index.js +0 -84
- package/dist/cjs/DualAxes/util.d.ts +0 -9
- package/dist/cjs/DualAxes/util.js +0 -77
- package/dist/cjs/FishboneDiagram/index.d.ts +0 -7
- package/dist/cjs/FishboneDiagram/index.js +0 -66
- package/dist/cjs/FlowDiagram/helper.d.ts +0 -7
- package/dist/cjs/FlowDiagram/helper.js +0 -83
- package/dist/cjs/FlowDiagram/index.d.ts +0 -6
- package/dist/cjs/FlowDiagram/index.js +0 -107
- package/dist/cjs/Funnel/index.d.ts +0 -12
- package/dist/cjs/Funnel/index.js +0 -173
- package/dist/cjs/GPTVis/Lite.d.ts +0 -19
- package/dist/cjs/GPTVis/Lite.js +0 -81
- package/dist/cjs/GPTVis/hooks/useContext.d.ts +0 -8
- package/dist/cjs/GPTVis/hooks/useContext.js +0 -49
- package/dist/cjs/GPTVis/hooks/useEvent.d.ts +0 -1
- package/dist/cjs/GPTVis/hooks/useEvent.js +0 -33
- package/dist/cjs/GPTVis/index.d.ts +0 -6
- package/dist/cjs/GPTVis/index.js +0 -42
- package/dist/cjs/HeatMap/index.d.ts +0 -12
- package/dist/cjs/HeatMap/index.js +0 -67
- package/dist/cjs/Histogram/index.d.ts +0 -8
- package/dist/cjs/Histogram/index.js +0 -79
- package/dist/cjs/IndentedTree/index.d.ts +0 -7
- package/dist/cjs/IndentedTree/index.js +0 -78
- package/dist/cjs/Line/index.d.ts +0 -11
- package/dist/cjs/Line/index.js +0 -94
- package/dist/cjs/Liquid/index.d.ts +0 -11
- package/dist/cjs/Liquid/index.js +0 -85
- package/dist/cjs/Map/Component/MapView.d.ts +0 -3
- package/dist/cjs/Map/Component/MapView.js +0 -40
- package/dist/cjs/Map/Component/Marker.d.ts +0 -3
- package/dist/cjs/Map/Component/Marker.js +0 -53
- package/dist/cjs/Map/Component/Polyline.d.ts +0 -3
- package/dist/cjs/Map/Component/Polyline.js +0 -50
- package/dist/cjs/Map/Component/index.d.ts +0 -4
- package/dist/cjs/Map/Component/index.js +0 -45
- package/dist/cjs/Map/data.json +0 -305
- package/dist/cjs/Map/index.d.ts +0 -5
- package/dist/cjs/Map/index.js +0 -61
- package/dist/cjs/MindMap/index.d.ts +0 -7
- package/dist/cjs/MindMap/index.js +0 -75
- package/dist/cjs/NetworkGraph/index.d.ts +0 -6
- package/dist/cjs/NetworkGraph/index.js +0 -75
- package/dist/cjs/OrganizationChart/index.d.ts +0 -6
- package/dist/cjs/OrganizationChart/index.js +0 -95
- package/dist/cjs/PathMap/index.d.ts +0 -6
- package/dist/cjs/PathMap/index.js +0 -58
- package/dist/cjs/Pie/index.d.ts +0 -23
- package/dist/cjs/Pie/index.js +0 -94
- package/dist/cjs/PinMap/index.d.ts +0 -6
- package/dist/cjs/PinMap/index.js +0 -44
- package/dist/cjs/PinMap/maker.svg +0 -1
- package/dist/cjs/Radar/index.d.ts +0 -13
- package/dist/cjs/Radar/index.js +0 -153
- package/dist/cjs/Sankey/index.d.ts +0 -14
- package/dist/cjs/Sankey/index.js +0 -110
- package/dist/cjs/Scatter/index.d.ts +0 -13
- package/dist/cjs/Scatter/index.js +0 -103
- package/dist/cjs/Spreadsheet/index.d.ts +0 -28
- package/dist/cjs/Spreadsheet/index.js +0 -113
- package/dist/cjs/Table/index.d.ts +0 -9
- package/dist/cjs/Table/index.js +0 -91
- package/dist/cjs/Text/VisText.d.ts +0 -4
- package/dist/cjs/Text/VisText.js +0 -82
- package/dist/cjs/Text/config.d.ts +0 -18
- package/dist/cjs/Text/config.js +0 -91
- package/dist/cjs/Text/custom-icons/index.d.ts +0 -3
- package/dist/cjs/Text/custom-icons/index.js +0 -66
- package/dist/cjs/Text/index.d.ts +0 -3
- package/dist/cjs/Text/index.js +0 -42
- package/dist/cjs/Text/mini-charts/hooks/getElementFontSize.d.ts +0 -1
- package/dist/cjs/Text/mini-charts/hooks/getElementFontSize.js +0 -65
- package/dist/cjs/Text/mini-charts/hooks/index.d.ts +0 -1
- package/dist/cjs/Text/mini-charts/hooks/useSvgWrapper.d.ts +0 -5
- package/dist/cjs/Text/mini-charts/hooks/useSvgWrapper.js +0 -65
- package/dist/cjs/Text/mini-charts/index.d.ts +0 -2
- package/dist/cjs/Text/mini-charts/index.js +0 -25
- package/dist/cjs/Text/mini-charts/line/SingleLineChart.d.ts +0 -3
- package/dist/cjs/Text/mini-charts/line/SingleLineChart.js +0 -63
- package/dist/cjs/Text/mini-charts/line/index.d.ts +0 -1
- package/dist/cjs/Text/mini-charts/line/index.js +0 -29
- package/dist/cjs/Text/mini-charts/line/scaleLinear.d.ts +0 -4
- package/dist/cjs/Text/mini-charts/line/scaleLinear.js +0 -35
- package/dist/cjs/Text/mini-charts/line/useLineCompute.d.ts +0 -6
- package/dist/cjs/Text/mini-charts/line/useLineCompute.js +0 -103
- package/dist/cjs/Text/mini-charts/proportion/getArcPath.d.ts +0 -1
- package/dist/cjs/Text/mini-charts/proportion/getArcPath.js +0 -51
- package/dist/cjs/Text/mini-charts/proportion/index.d.ts +0 -3
- package/dist/cjs/Text/mini-charts/proportion/index.js +0 -71
- package/dist/cjs/Text/theme.d.ts +0 -24
- package/dist/cjs/Text/theme.js +0 -52
- package/dist/cjs/Text/types.d.ts +0 -20
- package/dist/cjs/Text/types.js +0 -17
- package/dist/cjs/Text/utils/getThemeColor.d.ts +0 -11
- package/dist/cjs/Text/utils/getThemeColor.js +0 -46
- package/dist/cjs/Text/utils/index.d.ts +0 -2
- package/dist/cjs/Text/utils/index.js +0 -25
- package/dist/cjs/Text/utils/useAntdDarkAlgorithm.d.ts +0 -2
- package/dist/cjs/Text/utils/useAntdDarkAlgorithm.js +0 -40
- package/dist/cjs/Treemap/index.d.ts +0 -10
- package/dist/cjs/Treemap/index.js +0 -93
- package/dist/cjs/Venn/index.d.ts +0 -32
- package/dist/cjs/Venn/index.js +0 -87
- package/dist/cjs/Violin/index.d.ts +0 -10
- package/dist/cjs/Violin/index.js +0 -190
- package/dist/cjs/Waterfall/index.d.ts +0 -25
- package/dist/cjs/Waterfall/index.js +0 -184
- package/dist/cjs/WordCloud/index.d.ts +0 -9
- package/dist/cjs/WordCloud/index.js +0 -76
- package/dist/cjs/constants/index.d.ts +0 -2
- package/dist/cjs/constants/index.js +0 -35
- package/dist/cjs/export-map.browser.d.ts +0 -4
- package/dist/cjs/export-map.browser.js +0 -48
- package/dist/cjs/export-map.d.ts +0 -10
- package/dist/cjs/export-map.js +0 -41
- package/dist/cjs/export.d.ts +0 -76
- package/dist/cjs/export.js +0 -159
- package/dist/cjs/render.d.ts +0 -2
- package/dist/cjs/render.js +0 -67
- package/dist/cjs/theme.d.ts +0 -2
- package/dist/cjs/types/chart.d.ts +0 -88
- package/dist/cjs/types/chart.js +0 -61
- package/dist/cjs/types/config.d.ts +0 -25
- package/dist/cjs/types/config.js +0 -17
- package/dist/cjs/types/map.d.ts +0 -242
- package/dist/cjs/types/map.js +0 -17
- package/dist/cjs/utils/config.d.ts +0 -5
- package/dist/cjs/utils/config.js +0 -76
- package/dist/cjs/utils/graph.d.ts +0 -18
- package/dist/cjs/utils/graph.js +0 -64
- package/dist/cjs/utils/index.d.ts +0 -1
- package/dist/cjs/utils/index.js +0 -23
- package/dist/cjs/utils/map/context.d.ts +0 -3
- package/dist/cjs/utils/map/context.js +0 -45
- package/dist/cjs/utils/map/controls.d.ts +0 -0
- package/dist/cjs/utils/map/controls.js +0 -0
- package/dist/cjs/utils/map/index.d.ts +0 -6
- package/dist/cjs/utils/map/index.js +0 -33
- package/dist/cjs/utils/map/markers.d.ts +0 -2
- package/dist/cjs/utils/map/markers.js +0 -88
- package/dist/cjs/utils/map/polyline.d.ts +0 -2
- package/dist/cjs/utils/map/polyline.js +0 -52
- package/dist/cjs/utils/map/style.d.ts +0 -45
- package/dist/cjs/utils/map/style.js +0 -112
- package/dist/cjs/utils/map/util.d.ts +0 -1
- package/dist/cjs/utils/map/view.d.ts +0 -5
- package/dist/cjs/utils/map/view.js +0 -100
- package/dist/cjs/utils/palette.d.ts +0 -2
- package/dist/cjs/utils/palette.js +0 -54
- package/dist/cjs/utils/plot.d.ts +0 -5
- package/dist/cjs/utils/plot.js +0 -90
- package/dist/cjs/version.d.ts +0 -2
- package/dist/cjs/version.js +0 -25
- package/dist/esm/Area/index.d.ts +0 -11
- package/dist/esm/Area/index.js +0 -108
- package/dist/esm/Bar/index.d.ts +0 -14
- package/dist/esm/Bar/index.js +0 -92
- package/dist/esm/Boxplot/index.d.ts +0 -11
- package/dist/esm/Boxplot/index.js +0 -86
- package/dist/esm/ChartCodeRender/Loading.d.ts +0 -6
- package/dist/esm/ChartCodeRender/Loading.js +0 -21
- package/dist/esm/ChartCodeRender/VisChart.d.ts +0 -19
- package/dist/esm/ChartCodeRender/VisChart.js +0 -450
- package/dist/esm/ChartCodeRender/icon.d.ts +0 -10
- package/dist/esm/ChartCodeRender/icon.js +0 -103
- package/dist/esm/ChartCodeRender/index.d.ts +0 -8
- package/dist/esm/ChartCodeRender/index.js +0 -99
- package/dist/esm/ChartCodeRender/styles.d.ts +0 -19
- package/dist/esm/ChartCodeRender/styles.js +0 -61
- package/dist/esm/ChartCodeRender/type.d.ts +0 -176
- package/dist/esm/ChartCodeRender/type.js +0 -1
- package/dist/esm/ChartCodeRender/utils.d.ts +0 -1
- package/dist/esm/ChartCodeRender/utils.js +0 -37
- package/dist/esm/Column/index.d.ts +0 -14
- package/dist/esm/Column/index.js +0 -93
- package/dist/esm/ConfigProvider/context.d.ts +0 -3
- package/dist/esm/ConfigProvider/context.js +0 -3
- package/dist/esm/ConfigProvider/hooks/index.d.ts +0 -1
- package/dist/esm/ConfigProvider/hooks/index.js +0 -1
- package/dist/esm/ConfigProvider/hooks/useConfig.d.ts +0 -13
- package/dist/esm/ConfigProvider/hooks/useConfig.js +0 -71
- package/dist/esm/ConfigProvider/index.d.ts +0 -7
- package/dist/esm/ConfigProvider/index.js +0 -17
- package/dist/esm/DualAxes/index.d.ts +0 -20
- package/dist/esm/DualAxes/index.js +0 -77
- package/dist/esm/DualAxes/util.d.ts +0 -9
- package/dist/esm/DualAxes/util.js +0 -77
- package/dist/esm/FishboneDiagram/index.d.ts +0 -7
- package/dist/esm/FishboneDiagram/index.js +0 -43
- package/dist/esm/FlowDiagram/helper.d.ts +0 -7
- package/dist/esm/FlowDiagram/helper.js +0 -76
- package/dist/esm/FlowDiagram/index.d.ts +0 -6
- package/dist/esm/FlowDiagram/index.js +0 -72
- package/dist/esm/Funnel/index.d.ts +0 -12
- package/dist/esm/Funnel/index.js +0 -171
- package/dist/esm/GPTVis/Lite.d.ts +0 -19
- package/dist/esm/GPTVis/Lite.js +0 -57
- package/dist/esm/GPTVis/hooks/useContext.d.ts +0 -8
- package/dist/esm/GPTVis/hooks/useContext.js +0 -9
- package/dist/esm/GPTVis/hooks/useEvent.d.ts +0 -1
- package/dist/esm/GPTVis/hooks/useEvent.js +0 -6
- package/dist/esm/GPTVis/index.d.ts +0 -6
- package/dist/esm/GPTVis/index.js +0 -25
- package/dist/esm/HeatMap/index.d.ts +0 -12
- package/dist/esm/HeatMap/index.js +0 -45
- package/dist/esm/Histogram/index.d.ts +0 -8
- package/dist/esm/Histogram/index.js +0 -75
- package/dist/esm/IndentedTree/index.d.ts +0 -7
- package/dist/esm/IndentedTree/index.js +0 -68
- package/dist/esm/Line/index.d.ts +0 -11
- package/dist/esm/Line/index.js +0 -92
- package/dist/esm/Liquid/index.d.ts +0 -11
- package/dist/esm/Liquid/index.js +0 -100
- package/dist/esm/Map/Component/MapView.d.ts +0 -3
- package/dist/esm/Map/Component/MapView.js +0 -18
- package/dist/esm/Map/Component/Marker.d.ts +0 -3
- package/dist/esm/Map/Component/Marker.js +0 -40
- package/dist/esm/Map/Component/Polyline.d.ts +0 -3
- package/dist/esm/Map/Component/Polyline.js +0 -35
- package/dist/esm/Map/Component/index.d.ts +0 -4
- package/dist/esm/Map/Component/index.js +0 -4
- package/dist/esm/Map/data.json +0 -305
- package/dist/esm/Map/index.d.ts +0 -5
- package/dist/esm/Map/index.js +0 -50
- package/dist/esm/MindMap/index.d.ts +0 -7
- package/dist/esm/MindMap/index.js +0 -69
- package/dist/esm/NetworkGraph/index.d.ts +0 -6
- package/dist/esm/NetworkGraph/index.js +0 -64
- package/dist/esm/OrganizationChart/index.d.ts +0 -6
- package/dist/esm/OrganizationChart/index.js +0 -75
- package/dist/esm/PathMap/index.d.ts +0 -6
- package/dist/esm/PathMap/index.js +0 -41
- package/dist/esm/Pie/index.d.ts +0 -23
- package/dist/esm/Pie/index.js +0 -96
- package/dist/esm/PinMap/index.d.ts +0 -6
- package/dist/esm/PinMap/index.js +0 -22
- package/dist/esm/PinMap/maker.svg +0 -1
- package/dist/esm/Radar/index.d.ts +0 -13
- package/dist/esm/Radar/index.js +0 -150
- package/dist/esm/Sankey/index.d.ts +0 -14
- package/dist/esm/Sankey/index.js +0 -98
- package/dist/esm/Scatter/index.d.ts +0 -13
- package/dist/esm/Scatter/index.js +0 -95
- package/dist/esm/Spreadsheet/index.d.ts +0 -28
- package/dist/esm/Spreadsheet/index.js +0 -129
- package/dist/esm/Table/index.d.ts +0 -9
- package/dist/esm/Table/index.js +0 -30
- package/dist/esm/Text/VisText.d.ts +0 -4
- package/dist/esm/Text/VisText.js +0 -55
- package/dist/esm/Text/config.d.ts +0 -18
- package/dist/esm/Text/config.js +0 -82
- package/dist/esm/Text/custom-icons/index.d.ts +0 -3
- package/dist/esm/Text/custom-icons/index.js +0 -37
- package/dist/esm/Text/index.d.ts +0 -3
- package/dist/esm/Text/index.js +0 -2
- package/dist/esm/Text/mini-charts/hooks/getElementFontSize.d.ts +0 -1
- package/dist/esm/Text/mini-charts/hooks/getElementFontSize.js +0 -32
- package/dist/esm/Text/mini-charts/hooks/index.d.ts +0 -1
- package/dist/esm/Text/mini-charts/hooks/index.js +0 -1
- package/dist/esm/Text/mini-charts/hooks/useSvgWrapper.d.ts +0 -5
- package/dist/esm/Text/mini-charts/hooks/useSvgWrapper.js +0 -37
- package/dist/esm/Text/mini-charts/index.d.ts +0 -2
- package/dist/esm/Text/mini-charts/index.js +0 -2
- package/dist/esm/Text/mini-charts/line/SingleLineChart.d.ts +0 -3
- package/dist/esm/Text/mini-charts/line/SingleLineChart.js +0 -62
- package/dist/esm/Text/mini-charts/line/index.d.ts +0 -1
- package/dist/esm/Text/mini-charts/line/index.js +0 -1
- package/dist/esm/Text/mini-charts/line/scaleLinear.d.ts +0 -4
- package/dist/esm/Text/mini-charts/line/scaleLinear.js +0 -19
- package/dist/esm/Text/mini-charts/line/useLineCompute.d.ts +0 -6
- package/dist/esm/Text/mini-charts/line/useLineCompute.js +0 -118
- package/dist/esm/Text/mini-charts/proportion/getArcPath.d.ts +0 -1
- package/dist/esm/Text/mini-charts/proportion/getArcPath.js +0 -19
- package/dist/esm/Text/mini-charts/proportion/index.d.ts +0 -3
- package/dist/esm/Text/mini-charts/proportion/index.js +0 -64
- package/dist/esm/Text/theme.d.ts +0 -24
- package/dist/esm/Text/theme.js +0 -24
- package/dist/esm/Text/types.d.ts +0 -20
- package/dist/esm/Text/types.js +0 -1
- package/dist/esm/Text/utils/getThemeColor.d.ts +0 -11
- package/dist/esm/Text/utils/getThemeColor.js +0 -29
- package/dist/esm/Text/utils/index.d.ts +0 -2
- package/dist/esm/Text/utils/index.js +0 -2
- package/dist/esm/Text/utils/useAntdDarkAlgorithm.d.ts +0 -2
- package/dist/esm/Text/utils/useAntdDarkAlgorithm.js +0 -14
- package/dist/esm/Treemap/index.d.ts +0 -10
- package/dist/esm/Treemap/index.js +0 -88
- package/dist/esm/Venn/index.d.ts +0 -32
- package/dist/esm/Venn/index.js +0 -69
- package/dist/esm/Violin/index.d.ts +0 -10
- package/dist/esm/Violin/index.js +0 -199
- package/dist/esm/Waterfall/index.d.ts +0 -25
- package/dist/esm/Waterfall/index.js +0 -185
- package/dist/esm/WordCloud/index.d.ts +0 -9
- package/dist/esm/WordCloud/index.js +0 -59
- package/dist/esm/constants/index.d.ts +0 -2
- package/dist/esm/constants/index.js +0 -9
- package/dist/esm/export-map.browser.d.ts +0 -4
- package/dist/esm/export-map.browser.js +0 -5
- package/dist/esm/export-map.d.ts +0 -10
- package/dist/esm/export-map.js +0 -9
- package/dist/esm/export.d.ts +0 -76
- package/dist/esm/export.js +0 -51
- package/dist/esm/render.d.ts +0 -2
- package/dist/esm/render.js +0 -32
- package/dist/esm/theme.d.ts +0 -2
- package/dist/esm/theme.js +0 -103
- package/dist/esm/types/chart.d.ts +0 -88
- package/dist/esm/types/chart.js +0 -33
- package/dist/esm/types/config.d.ts +0 -25
- package/dist/esm/types/config.js +0 -1
- package/dist/esm/types/map.d.ts +0 -242
- package/dist/esm/types/map.js +0 -1
- package/dist/esm/utils/config.d.ts +0 -5
- package/dist/esm/utils/config.js +0 -53
- package/dist/esm/utils/graph.d.ts +0 -18
- package/dist/esm/utils/graph.js +0 -55
- package/dist/esm/utils/index.d.ts +0 -1
- package/dist/esm/utils/index.js +0 -1
- package/dist/esm/utils/map/context.d.ts +0 -3
- package/dist/esm/utils/map/context.js +0 -42
- package/dist/esm/utils/map/controls.d.ts +0 -0
- package/dist/esm/utils/map/controls.js +0 -0
- package/dist/esm/utils/map/index.d.ts +0 -6
- package/dist/esm/utils/map/index.js +0 -6
- package/dist/esm/utils/map/markers.d.ts +0 -2
- package/dist/esm/utils/map/markers.js +0 -69
- package/dist/esm/utils/map/polyline.d.ts +0 -2
- package/dist/esm/utils/map/polyline.js +0 -31
- package/dist/esm/utils/map/style.d.ts +0 -45
- package/dist/esm/utils/map/style.js +0 -80
- package/dist/esm/utils/map/util.d.ts +0 -1
- package/dist/esm/utils/map/util.js +0 -11
- package/dist/esm/utils/map/view.d.ts +0 -5
- package/dist/esm/utils/map/view.js +0 -83
- package/dist/esm/utils/palette.d.ts +0 -2
- package/dist/esm/utils/palette.js +0 -2
- package/dist/esm/utils/plot.d.ts +0 -5
- package/dist/esm/utils/plot.js +0 -86
- package/dist/esm/version.d.ts +0 -2
- package/dist/esm/version.js +0 -1
- package/dist/umd/376.async.js +0 -1
- package/dist/umd/index.min.css +0 -1
|
@@ -1,184 +0,0 @@
|
|
|
1
|
-
var __create = Object.create;
|
|
2
|
-
var __defProp = Object.defineProperty;
|
|
3
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
-
var __getProtoOf = Object.getPrototypeOf;
|
|
6
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
-
var __export = (target, all) => {
|
|
8
|
-
for (var name in all)
|
|
9
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
10
|
-
};
|
|
11
|
-
var __copyProps = (to, from, except, desc) => {
|
|
12
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
|
-
for (let key of __getOwnPropNames(from))
|
|
14
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
15
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
16
|
-
}
|
|
17
|
-
return to;
|
|
18
|
-
};
|
|
19
|
-
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
20
|
-
// If the importer is in node compatibility mode or this is not an ESM
|
|
21
|
-
// file that has been converted to a CommonJS file using a Babel-
|
|
22
|
-
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
23
|
-
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
24
|
-
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
25
|
-
mod
|
|
26
|
-
));
|
|
27
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
28
|
-
|
|
29
|
-
// src/Waterfall/index.tsx
|
|
30
|
-
var Waterfall_exports = {};
|
|
31
|
-
__export(Waterfall_exports, {
|
|
32
|
-
default: () => Waterfall_default
|
|
33
|
-
});
|
|
34
|
-
module.exports = __toCommonJS(Waterfall_exports);
|
|
35
|
-
var import_g2 = require("@antv/g2");
|
|
36
|
-
var import_react = __toESM(require("react"));
|
|
37
|
-
var import_theme = require("../theme");
|
|
38
|
-
var DEFAULT_POSITIVE_COLOR = "#FF4D4F";
|
|
39
|
-
var DEFAULT_NEGATIVE_COLOR = "#2EBB59";
|
|
40
|
-
var DEFAULT_TOTAL_COLOR = "#1783FF";
|
|
41
|
-
function transformWaterfallData(data) {
|
|
42
|
-
let cumulative = 0;
|
|
43
|
-
let lastIntermediateTotalEnd = 0;
|
|
44
|
-
let totalSum = 0;
|
|
45
|
-
return data.map((item) => {
|
|
46
|
-
const value = item.value || 0;
|
|
47
|
-
let start;
|
|
48
|
-
let end;
|
|
49
|
-
if (item.isTotal) {
|
|
50
|
-
start = 0;
|
|
51
|
-
end = totalSum;
|
|
52
|
-
} else if (item.isIntermediateTotal) {
|
|
53
|
-
start = lastIntermediateTotalEnd;
|
|
54
|
-
end = cumulative;
|
|
55
|
-
lastIntermediateTotalEnd = end;
|
|
56
|
-
} else {
|
|
57
|
-
start = cumulative;
|
|
58
|
-
end = cumulative + value;
|
|
59
|
-
cumulative = end;
|
|
60
|
-
totalSum += value;
|
|
61
|
-
}
|
|
62
|
-
return {
|
|
63
|
-
...item,
|
|
64
|
-
__start__: start,
|
|
65
|
-
__end__: end,
|
|
66
|
-
__value__: item.isTotal ? totalSum : item.isIntermediateTotal ? end - start : value
|
|
67
|
-
};
|
|
68
|
-
});
|
|
69
|
-
}
|
|
70
|
-
function generateLinkData(data) {
|
|
71
|
-
return data.reduce((result, current, index) => {
|
|
72
|
-
if (index > 0) {
|
|
73
|
-
const previous = data[index - 1];
|
|
74
|
-
result.push({
|
|
75
|
-
x: [previous.category, current.category],
|
|
76
|
-
y: current.isTotal || current.isIntermediateTotal ? current.__end__ : current.__start__
|
|
77
|
-
});
|
|
78
|
-
}
|
|
79
|
-
return result;
|
|
80
|
-
}, []);
|
|
81
|
-
}
|
|
82
|
-
var defaultConfig = (props) => {
|
|
83
|
-
const { data = [], title, style = {}, axisXTitle, axisYTitle, theme = "default" } = props;
|
|
84
|
-
const { backgroundColor, palette = {} } = style;
|
|
85
|
-
const positiveColor = palette.positiveColor || DEFAULT_POSITIVE_COLOR;
|
|
86
|
-
const negativeColor = palette.negativeColor || DEFAULT_NEGATIVE_COLOR;
|
|
87
|
-
const totalColor = palette.totalColor || DEFAULT_TOTAL_COLOR;
|
|
88
|
-
const transformedData = transformWaterfallData(data);
|
|
89
|
-
const linkData = generateLinkData(transformedData);
|
|
90
|
-
return {
|
|
91
|
-
type: "view",
|
|
92
|
-
theme: import_theme.THEME_MAP[theme],
|
|
93
|
-
title,
|
|
94
|
-
data: transformedData,
|
|
95
|
-
axis: {
|
|
96
|
-
y: {
|
|
97
|
-
labelFormatter: "~s",
|
|
98
|
-
title: axisYTitle || false
|
|
99
|
-
},
|
|
100
|
-
x: {
|
|
101
|
-
title: axisXTitle || false
|
|
102
|
-
}
|
|
103
|
-
},
|
|
104
|
-
children: [
|
|
105
|
-
{
|
|
106
|
-
type: "interval",
|
|
107
|
-
data: transformedData,
|
|
108
|
-
encode: { x: "category", y: ["__start__", "__end__"], color: "category" },
|
|
109
|
-
style: {
|
|
110
|
-
maxWidth: 60,
|
|
111
|
-
stroke: "#666",
|
|
112
|
-
radius: 4,
|
|
113
|
-
fill: (d) => {
|
|
114
|
-
return d.isTotal || d.isIntermediateTotal ? totalColor : d.__value__ > 0 ? positiveColor : negativeColor;
|
|
115
|
-
}
|
|
116
|
-
},
|
|
117
|
-
labels: [
|
|
118
|
-
{
|
|
119
|
-
text: "__value__",
|
|
120
|
-
position: "inside",
|
|
121
|
-
fontSize: 10,
|
|
122
|
-
transform: [{ type: "overflowHide" }],
|
|
123
|
-
formatter: "~s",
|
|
124
|
-
fill: "#000",
|
|
125
|
-
fontWeight: 600,
|
|
126
|
-
stroke: "#fff"
|
|
127
|
-
}
|
|
128
|
-
],
|
|
129
|
-
tooltip: (d) => {
|
|
130
|
-
const tooltipName = axisYTitle || d["category"];
|
|
131
|
-
return {
|
|
132
|
-
name: tooltipName,
|
|
133
|
-
value: d["__value__"]
|
|
134
|
-
};
|
|
135
|
-
}
|
|
136
|
-
},
|
|
137
|
-
{
|
|
138
|
-
type: "link",
|
|
139
|
-
data: linkData,
|
|
140
|
-
encode: {
|
|
141
|
-
x: "x",
|
|
142
|
-
y: "y"
|
|
143
|
-
},
|
|
144
|
-
zIndex: -1,
|
|
145
|
-
style: {
|
|
146
|
-
stroke: "#ccc",
|
|
147
|
-
lineDash: [4, 2],
|
|
148
|
-
lineWidth: 1
|
|
149
|
-
},
|
|
150
|
-
tooltip: false
|
|
151
|
-
}
|
|
152
|
-
],
|
|
153
|
-
scale: {
|
|
154
|
-
y: {
|
|
155
|
-
nice: true
|
|
156
|
-
}
|
|
157
|
-
},
|
|
158
|
-
legend: false,
|
|
159
|
-
...backgroundColor ? { viewStyle: { viewFill: backgroundColor } } : {}
|
|
160
|
-
};
|
|
161
|
-
};
|
|
162
|
-
var Waterfall = (props) => {
|
|
163
|
-
const containerRef = (0, import_react.useRef)(null);
|
|
164
|
-
const chartRef = (0, import_react.useRef)(null);
|
|
165
|
-
(0, import_react.useEffect)(() => {
|
|
166
|
-
if (!containerRef.current)
|
|
167
|
-
return;
|
|
168
|
-
const chart = new import_g2.Chart({
|
|
169
|
-
container: containerRef.current,
|
|
170
|
-
autoFit: true,
|
|
171
|
-
padding: "auto"
|
|
172
|
-
});
|
|
173
|
-
const config = defaultConfig(props);
|
|
174
|
-
chart.options(config);
|
|
175
|
-
chart.render();
|
|
176
|
-
chartRef.current = chart;
|
|
177
|
-
return () => {
|
|
178
|
-
chart.destroy();
|
|
179
|
-
chartRef.current = null;
|
|
180
|
-
};
|
|
181
|
-
}, [props]);
|
|
182
|
-
return /* @__PURE__ */ import_react.default.createElement("div", { ref: containerRef });
|
|
183
|
-
};
|
|
184
|
-
var Waterfall_default = Waterfall;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { type FC } from 'react';
|
|
2
|
-
import type { BasePlotProps, Style, Theme } from '../types';
|
|
3
|
-
type WordCloudDataItem = {
|
|
4
|
-
text: string;
|
|
5
|
-
value: number;
|
|
6
|
-
};
|
|
7
|
-
export type WordCloudProps = BasePlotProps<WordCloudDataItem> & Theme & Style;
|
|
8
|
-
declare const WordCloud: FC<WordCloudProps>;
|
|
9
|
-
export default WordCloud;
|
|
@@ -1,76 +0,0 @@
|
|
|
1
|
-
var __create = Object.create;
|
|
2
|
-
var __defProp = Object.defineProperty;
|
|
3
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
-
var __getProtoOf = Object.getPrototypeOf;
|
|
6
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
-
var __export = (target, all) => {
|
|
8
|
-
for (var name in all)
|
|
9
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
10
|
-
};
|
|
11
|
-
var __copyProps = (to, from, except, desc) => {
|
|
12
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
|
-
for (let key of __getOwnPropNames(from))
|
|
14
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
15
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
16
|
-
}
|
|
17
|
-
return to;
|
|
18
|
-
};
|
|
19
|
-
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
20
|
-
// If the importer is in node compatibility mode or this is not an ESM
|
|
21
|
-
// file that has been converted to a CommonJS file using a Babel-
|
|
22
|
-
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
23
|
-
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
24
|
-
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
25
|
-
mod
|
|
26
|
-
));
|
|
27
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
28
|
-
|
|
29
|
-
// src/WordCloud/index.tsx
|
|
30
|
-
var WordCloud_exports = {};
|
|
31
|
-
__export(WordCloud_exports, {
|
|
32
|
-
default: () => WordCloud_default
|
|
33
|
-
});
|
|
34
|
-
module.exports = __toCommonJS(WordCloud_exports);
|
|
35
|
-
var import_plots = require("@ant-design/plots");
|
|
36
|
-
var import_react = __toESM(require("react"));
|
|
37
|
-
var import_hooks = require("../ConfigProvider/hooks");
|
|
38
|
-
var import_theme = require("../theme");
|
|
39
|
-
var defaultConfig = (props) => {
|
|
40
|
-
const { data, style = {} } = props;
|
|
41
|
-
const { backgroundColor, palette } = style;
|
|
42
|
-
const hasPalette = !!(palette == null ? void 0 : palette[0]);
|
|
43
|
-
let paletteConfig = { color: void 0 };
|
|
44
|
-
if (hasPalette) {
|
|
45
|
-
paletteConfig = {
|
|
46
|
-
color: {
|
|
47
|
-
range: palette
|
|
48
|
-
}
|
|
49
|
-
};
|
|
50
|
-
}
|
|
51
|
-
return {
|
|
52
|
-
data,
|
|
53
|
-
layout: { fontSize: [20, 100] },
|
|
54
|
-
colorField: "text",
|
|
55
|
-
legend: false,
|
|
56
|
-
tooltip: false,
|
|
57
|
-
encode: {
|
|
58
|
-
text: "text",
|
|
59
|
-
color: "text",
|
|
60
|
-
value: "value"
|
|
61
|
-
},
|
|
62
|
-
...backgroundColor ? { viewStyle: { viewFill: backgroundColor } } : { viewStyle: void 0 },
|
|
63
|
-
scale: {
|
|
64
|
-
...paletteConfig
|
|
65
|
-
}
|
|
66
|
-
};
|
|
67
|
-
};
|
|
68
|
-
var WordCloud = (props) => {
|
|
69
|
-
const themeConfig = import_theme.THEME_MAP[props.theme ?? "default"];
|
|
70
|
-
const config = (0, import_hooks.usePlotConfig)("WordCloud", defaultConfig, {
|
|
71
|
-
...props,
|
|
72
|
-
theme: themeConfig
|
|
73
|
-
});
|
|
74
|
-
return /* @__PURE__ */ import_react.default.createElement(import_plots.WordCloud, { ...config });
|
|
75
|
-
};
|
|
76
|
-
var WordCloud_default = WordCloud;
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
var __defProp = Object.defineProperty;
|
|
2
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
-
var __export = (target, all) => {
|
|
6
|
-
for (var name in all)
|
|
7
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
8
|
-
};
|
|
9
|
-
var __copyProps = (to, from, except, desc) => {
|
|
10
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
-
for (let key of __getOwnPropNames(from))
|
|
12
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
13
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
14
|
-
}
|
|
15
|
-
return to;
|
|
16
|
-
};
|
|
17
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
18
|
-
|
|
19
|
-
// src/constants/index.ts
|
|
20
|
-
var constants_exports = {};
|
|
21
|
-
__export(constants_exports, {
|
|
22
|
-
DEFAULT_GLOBAL_CONFIG: () => DEFAULT_GLOBAL_CONFIG
|
|
23
|
-
});
|
|
24
|
-
module.exports = __toCommonJS(constants_exports);
|
|
25
|
-
var import_Text = require("../Text");
|
|
26
|
-
var DEFAULT_GLOBAL_CONFIG = {
|
|
27
|
-
map: { style: "light" },
|
|
28
|
-
components: {
|
|
29
|
-
VisText: import_Text.DEFAULT_VIS_TEXT_CONFIG
|
|
30
|
-
}
|
|
31
|
-
};
|
|
32
|
-
// Annotate the CommonJS export names for ESM import in node:
|
|
33
|
-
0 && (module.exports = {
|
|
34
|
-
DEFAULT_GLOBAL_CONFIG
|
|
35
|
-
});
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
var __create = Object.create;
|
|
2
|
-
var __defProp = Object.defineProperty;
|
|
3
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
-
var __getProtoOf = Object.getPrototypeOf;
|
|
6
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
-
var __export = (target, all) => {
|
|
8
|
-
for (var name in all)
|
|
9
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
10
|
-
};
|
|
11
|
-
var __copyProps = (to, from, except, desc) => {
|
|
12
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
|
-
for (let key of __getOwnPropNames(from))
|
|
14
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
15
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
16
|
-
}
|
|
17
|
-
return to;
|
|
18
|
-
};
|
|
19
|
-
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
20
|
-
// If the importer is in node compatibility mode or this is not an ESM
|
|
21
|
-
// file that has been converted to a CommonJS file using a Babel-
|
|
22
|
-
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
23
|
-
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
24
|
-
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
25
|
-
mod
|
|
26
|
-
));
|
|
27
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
28
|
-
|
|
29
|
-
// src/export-map.browser.ts
|
|
30
|
-
var export_map_browser_exports = {};
|
|
31
|
-
__export(export_map_browser_exports, {
|
|
32
|
-
HeatMap: () => import_HeatMap.default,
|
|
33
|
-
Map: () => import_Map.default,
|
|
34
|
-
PathMap: () => import_PathMap.default,
|
|
35
|
-
PinMap: () => import_PinMap.default
|
|
36
|
-
});
|
|
37
|
-
module.exports = __toCommonJS(export_map_browser_exports);
|
|
38
|
-
var import_Map = __toESM(require("./Map"));
|
|
39
|
-
var import_PinMap = __toESM(require("./PinMap"));
|
|
40
|
-
var import_HeatMap = __toESM(require("./HeatMap"));
|
|
41
|
-
var import_PathMap = __toESM(require("./PathMap"));
|
|
42
|
-
// Annotate the CommonJS export names for ESM import in node:
|
|
43
|
-
0 && (module.exports = {
|
|
44
|
-
HeatMap,
|
|
45
|
-
Map,
|
|
46
|
-
PathMap,
|
|
47
|
-
PinMap
|
|
48
|
-
});
|
package/dist/cjs/export-map.d.ts
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import type { FC } from 'react';
|
|
2
|
-
import { type HeatMapProps } from './HeatMap';
|
|
3
|
-
import { type MapProps } from './Map';
|
|
4
|
-
import { type PathMapProps } from './PathMap';
|
|
5
|
-
import { type PinMapProps } from './PinMap';
|
|
6
|
-
export declare const Map: FC<MapProps>;
|
|
7
|
-
export declare const HeatMap: FC<HeatMapProps>;
|
|
8
|
-
export declare const PathMap: FC<PathMapProps>;
|
|
9
|
-
export declare const PinMap: FC<PinMapProps>;
|
|
10
|
-
export type { HeatMapProps, MapProps, PathMapProps, PinMapProps };
|
package/dist/cjs/export-map.js
DELETED
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
var __defProp = Object.defineProperty;
|
|
2
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
-
var __export = (target, all) => {
|
|
6
|
-
for (var name in all)
|
|
7
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
8
|
-
};
|
|
9
|
-
var __copyProps = (to, from, except, desc) => {
|
|
10
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
-
for (let key of __getOwnPropNames(from))
|
|
12
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
13
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
14
|
-
}
|
|
15
|
-
return to;
|
|
16
|
-
};
|
|
17
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
18
|
-
|
|
19
|
-
// src/export-map.ts
|
|
20
|
-
var export_map_exports = {};
|
|
21
|
-
__export(export_map_exports, {
|
|
22
|
-
HeatMap: () => HeatMap,
|
|
23
|
-
Map: () => Map,
|
|
24
|
-
PathMap: () => PathMap,
|
|
25
|
-
PinMap: () => PinMap
|
|
26
|
-
});
|
|
27
|
-
module.exports = __toCommonJS(export_map_exports);
|
|
28
|
-
function MockMap() {
|
|
29
|
-
return null;
|
|
30
|
-
}
|
|
31
|
-
var Map = MockMap;
|
|
32
|
-
var HeatMap = MockMap;
|
|
33
|
-
var PathMap = MockMap;
|
|
34
|
-
var PinMap = MockMap;
|
|
35
|
-
// Annotate the CommonJS export names for ESM import in node:
|
|
36
|
-
0 && (module.exports = {
|
|
37
|
-
HeatMap,
|
|
38
|
-
Map,
|
|
39
|
-
PathMap,
|
|
40
|
-
PinMap
|
|
41
|
-
});
|
package/dist/cjs/export.d.ts
DELETED
|
@@ -1,76 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import { ChartType } from './types';
|
|
3
|
-
/********** plot chart **********/
|
|
4
|
-
import { default as Area, type AreaProps } from './Area';
|
|
5
|
-
import { default as Bar, type BarProps } from './Bar';
|
|
6
|
-
import { default as Boxplot, type BoxplotProps } from './Boxplot';
|
|
7
|
-
import { default as Column, type ColumnProps } from './Column';
|
|
8
|
-
import { default as DualAxes, type DualAxesProps } from './DualAxes';
|
|
9
|
-
import { default as Funnel, type FunnelProps } from './Funnel';
|
|
10
|
-
import { default as Histogram, type HistogramProps } from './Histogram';
|
|
11
|
-
import { default as Line, type LineProps } from './Line';
|
|
12
|
-
import { default as Liquid, type LiquidProps } from './Liquid';
|
|
13
|
-
import { default as Pie, type PieProps } from './Pie';
|
|
14
|
-
import { default as Radar, type RadarProps } from './Radar';
|
|
15
|
-
import { default as Sankey, type SankeyProps } from './Sankey';
|
|
16
|
-
import { default as Scatter, type ScatterProps } from './Scatter';
|
|
17
|
-
import { default as Treemap, type TreemapProps } from './Treemap';
|
|
18
|
-
import { default as Venn, type VennProps } from './Venn';
|
|
19
|
-
import { default as Violin, type ViolinProps } from './Violin';
|
|
20
|
-
import { default as Waterfall, type WaterfallProps } from './Waterfall';
|
|
21
|
-
import { default as WordCloud, type WordCloudProps } from './WordCloud';
|
|
22
|
-
/********** graph chart **********/
|
|
23
|
-
import { default as FishboneDiagram, type FishboneDiagramProps } from './FishboneDiagram';
|
|
24
|
-
import { default as FlowDiagram, type FlowDiagramProps } from './FlowDiagram';
|
|
25
|
-
import { default as MindMap, type MindMapProps } from './MindMap';
|
|
26
|
-
import { default as NetworkGraph, type NetworkGraphProps } from './NetworkGraph';
|
|
27
|
-
import { default as OrganizationChart, type OrganizationChartProps } from './OrganizationChart';
|
|
28
|
-
import { default as IndentedTree, type IndentedTreeProps } from './IndentedTree';
|
|
29
|
-
/********** map chart **********/
|
|
30
|
-
export { Map, type MapProps } from './export-map';
|
|
31
|
-
import { PinMap, type PinMapProps, HeatMap, type HeatMapProps, PathMap, type PathMapProps } from './export-map';
|
|
32
|
-
/********** NTV **********/
|
|
33
|
-
import { default as Table, type TableProps } from './Table';
|
|
34
|
-
import { default as Spreadsheet, type SpreadsheetProps } from './Spreadsheet';
|
|
35
|
-
export { VisText, type VisTextProps } from './Text';
|
|
36
|
-
export { Area, Bar, Boxplot, Column, DualAxes, FishboneDiagram, FlowDiagram, Funnel, HeatMap, Histogram, IndentedTree, Line, Liquid, MindMap, NetworkGraph, OrganizationChart, PathMap, Pie, PinMap, Radar, Sankey, Scatter, Treemap, Venn, Violin, Waterfall, Table, Spreadsheet, WordCloud, type AreaProps, type BarProps, type BoxplotProps, type ColumnProps, type DualAxesProps, type FishboneDiagramProps, type FlowDiagramProps, type FunnelProps, type HeatMapProps, type HistogramProps, type IndentedTreeProps, type LineProps, type LiquidProps, type MindMapProps, type NetworkGraphProps, type OrganizationChartProps, type PathMapProps, type PieProps, type PinMapProps, type RadarProps, type SankeyProps, type ScatterProps, type TreemapProps, type VennProps, type ViolinProps, type WaterfallProps, type TableProps, type SpreadsheetProps, type WordCloudProps, };
|
|
37
|
-
export type VisOptionMap = {
|
|
38
|
-
[ChartType.Area]: AreaProps;
|
|
39
|
-
[ChartType.Bar]: BarProps;
|
|
40
|
-
[ChartType.Boxplot]: BoxplotProps;
|
|
41
|
-
[ChartType.Column]: ColumnProps;
|
|
42
|
-
[ChartType.DualAxes]: DualAxesProps;
|
|
43
|
-
[ChartType.FishboneDiagram]: FishboneDiagramProps;
|
|
44
|
-
[ChartType.FlowDiagram]: FlowDiagramProps;
|
|
45
|
-
[ChartType.Funnel]: FunnelProps;
|
|
46
|
-
[ChartType.HeatMap]: HeatMapProps;
|
|
47
|
-
[ChartType.Histogram]: HistogramProps;
|
|
48
|
-
[ChartType.IndentedTree]: IndentedTreeProps;
|
|
49
|
-
[ChartType.Line]: LineProps;
|
|
50
|
-
[ChartType.Liquid]: LiquidProps;
|
|
51
|
-
[ChartType.MindMap]: MindMapProps;
|
|
52
|
-
[ChartType.NetworkGraph]: NetworkGraphProps;
|
|
53
|
-
[ChartType.OrganizationChart]: OrganizationChartProps;
|
|
54
|
-
[ChartType.PathMap]: PathMapProps;
|
|
55
|
-
[ChartType.Pie]: PieProps;
|
|
56
|
-
[ChartType.PinMap]: PinMapProps;
|
|
57
|
-
[ChartType.Radar]: RadarProps;
|
|
58
|
-
[ChartType.Sankey]: SankeyProps;
|
|
59
|
-
[ChartType.Scatter]: ScatterProps;
|
|
60
|
-
[ChartType.Table]: TableProps;
|
|
61
|
-
[ChartType.Spreadsheet]: SpreadsheetProps;
|
|
62
|
-
[ChartType.Treemap]: TreemapProps;
|
|
63
|
-
[ChartType.Venn]: VennProps;
|
|
64
|
-
[ChartType.Violin]: ViolinProps;
|
|
65
|
-
[ChartType.Waterfall]: WaterfallProps;
|
|
66
|
-
[ChartType.WordCloud]: WordCloudProps;
|
|
67
|
-
};
|
|
68
|
-
/**
|
|
69
|
-
* 所有的 Vis 类型的类型定义
|
|
70
|
-
*/
|
|
71
|
-
export type Spec = {
|
|
72
|
-
[K in keyof VisOptionMap]: {
|
|
73
|
-
type: K;
|
|
74
|
-
} & VisOptionMap[K];
|
|
75
|
-
}[keyof VisOptionMap];
|
|
76
|
-
export declare const DEFAULT_CHART_COMPONENTS: Record<string, React.FC<any>>;
|
package/dist/cjs/export.js
DELETED
|
@@ -1,159 +0,0 @@
|
|
|
1
|
-
var __create = Object.create;
|
|
2
|
-
var __defProp = Object.defineProperty;
|
|
3
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
-
var __getProtoOf = Object.getPrototypeOf;
|
|
6
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
-
var __export = (target, all) => {
|
|
8
|
-
for (var name in all)
|
|
9
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
10
|
-
};
|
|
11
|
-
var __copyProps = (to, from, except, desc) => {
|
|
12
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
|
-
for (let key of __getOwnPropNames(from))
|
|
14
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
15
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
16
|
-
}
|
|
17
|
-
return to;
|
|
18
|
-
};
|
|
19
|
-
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
20
|
-
// If the importer is in node compatibility mode or this is not an ESM
|
|
21
|
-
// file that has been converted to a CommonJS file using a Babel-
|
|
22
|
-
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
23
|
-
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
24
|
-
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
25
|
-
mod
|
|
26
|
-
));
|
|
27
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
28
|
-
|
|
29
|
-
// src/export.ts
|
|
30
|
-
var export_exports = {};
|
|
31
|
-
__export(export_exports, {
|
|
32
|
-
Area: () => import_Area.default,
|
|
33
|
-
Bar: () => import_Bar.default,
|
|
34
|
-
Boxplot: () => import_Boxplot.default,
|
|
35
|
-
Column: () => import_Column.default,
|
|
36
|
-
DEFAULT_CHART_COMPONENTS: () => DEFAULT_CHART_COMPONENTS,
|
|
37
|
-
DualAxes: () => import_DualAxes.default,
|
|
38
|
-
FishboneDiagram: () => import_FishboneDiagram.default,
|
|
39
|
-
FlowDiagram: () => import_FlowDiagram.default,
|
|
40
|
-
Funnel: () => import_Funnel.default,
|
|
41
|
-
HeatMap: () => import_export_map2.HeatMap,
|
|
42
|
-
Histogram: () => import_Histogram.default,
|
|
43
|
-
IndentedTree: () => import_IndentedTree.default,
|
|
44
|
-
Line: () => import_Line.default,
|
|
45
|
-
Liquid: () => import_Liquid.default,
|
|
46
|
-
Map: () => import_export_map.Map,
|
|
47
|
-
MindMap: () => import_MindMap.default,
|
|
48
|
-
NetworkGraph: () => import_NetworkGraph.default,
|
|
49
|
-
OrganizationChart: () => import_OrganizationChart.default,
|
|
50
|
-
PathMap: () => import_export_map2.PathMap,
|
|
51
|
-
Pie: () => import_Pie.default,
|
|
52
|
-
PinMap: () => import_export_map2.PinMap,
|
|
53
|
-
Radar: () => import_Radar.default,
|
|
54
|
-
Sankey: () => import_Sankey.default,
|
|
55
|
-
Scatter: () => import_Scatter.default,
|
|
56
|
-
Spreadsheet: () => import_Spreadsheet.default,
|
|
57
|
-
Table: () => import_Table.default,
|
|
58
|
-
Treemap: () => import_Treemap.default,
|
|
59
|
-
Venn: () => import_Venn.default,
|
|
60
|
-
Violin: () => import_Violin.default,
|
|
61
|
-
VisText: () => import_Text.VisText,
|
|
62
|
-
Waterfall: () => import_Waterfall.default,
|
|
63
|
-
WordCloud: () => import_WordCloud.default
|
|
64
|
-
});
|
|
65
|
-
module.exports = __toCommonJS(export_exports);
|
|
66
|
-
var import_types = require("./types");
|
|
67
|
-
var import_Area = __toESM(require("./Area"));
|
|
68
|
-
var import_Bar = __toESM(require("./Bar"));
|
|
69
|
-
var import_Boxplot = __toESM(require("./Boxplot"));
|
|
70
|
-
var import_Column = __toESM(require("./Column"));
|
|
71
|
-
var import_DualAxes = __toESM(require("./DualAxes"));
|
|
72
|
-
var import_Funnel = __toESM(require("./Funnel"));
|
|
73
|
-
var import_Histogram = __toESM(require("./Histogram"));
|
|
74
|
-
var import_Line = __toESM(require("./Line"));
|
|
75
|
-
var import_Liquid = __toESM(require("./Liquid"));
|
|
76
|
-
var import_Pie = __toESM(require("./Pie"));
|
|
77
|
-
var import_Radar = __toESM(require("./Radar"));
|
|
78
|
-
var import_Sankey = __toESM(require("./Sankey"));
|
|
79
|
-
var import_Scatter = __toESM(require("./Scatter"));
|
|
80
|
-
var import_Treemap = __toESM(require("./Treemap"));
|
|
81
|
-
var import_Venn = __toESM(require("./Venn"));
|
|
82
|
-
var import_Violin = __toESM(require("./Violin"));
|
|
83
|
-
var import_Waterfall = __toESM(require("./Waterfall"));
|
|
84
|
-
var import_WordCloud = __toESM(require("./WordCloud"));
|
|
85
|
-
var import_FishboneDiagram = __toESM(require("./FishboneDiagram"));
|
|
86
|
-
var import_FlowDiagram = __toESM(require("./FlowDiagram"));
|
|
87
|
-
var import_MindMap = __toESM(require("./MindMap"));
|
|
88
|
-
var import_NetworkGraph = __toESM(require("./NetworkGraph"));
|
|
89
|
-
var import_OrganizationChart = __toESM(require("./OrganizationChart"));
|
|
90
|
-
var import_IndentedTree = __toESM(require("./IndentedTree"));
|
|
91
|
-
var import_export_map = require("./export-map");
|
|
92
|
-
var import_export_map2 = require("./export-map");
|
|
93
|
-
var import_Table = __toESM(require("./Table"));
|
|
94
|
-
var import_Spreadsheet = __toESM(require("./Spreadsheet"));
|
|
95
|
-
var import_Text = require("./Text");
|
|
96
|
-
var DEFAULT_CHART_COMPONENTS = {
|
|
97
|
-
[import_types.ChartType.Area]: import_Area.default,
|
|
98
|
-
[import_types.ChartType.Bar]: import_Bar.default,
|
|
99
|
-
[import_types.ChartType.Boxplot]: import_Boxplot.default,
|
|
100
|
-
[import_types.ChartType.Column]: import_Column.default,
|
|
101
|
-
[import_types.ChartType.DualAxes]: import_DualAxes.default,
|
|
102
|
-
[import_types.ChartType.FishboneDiagram]: import_FishboneDiagram.default,
|
|
103
|
-
[import_types.ChartType.FlowDiagram]: import_FlowDiagram.default,
|
|
104
|
-
[import_types.ChartType.Funnel]: import_Funnel.default,
|
|
105
|
-
[import_types.ChartType.HeatMap]: import_export_map2.HeatMap,
|
|
106
|
-
[import_types.ChartType.Histogram]: import_Histogram.default,
|
|
107
|
-
[import_types.ChartType.IndentedTree]: import_IndentedTree.default,
|
|
108
|
-
[import_types.ChartType.Line]: import_Line.default,
|
|
109
|
-
[import_types.ChartType.Liquid]: import_Liquid.default,
|
|
110
|
-
[import_types.ChartType.MindMap]: import_MindMap.default,
|
|
111
|
-
[import_types.ChartType.NetworkGraph]: import_NetworkGraph.default,
|
|
112
|
-
[import_types.ChartType.Pie]: import_Pie.default,
|
|
113
|
-
[import_types.ChartType.PinMap]: import_export_map2.PinMap,
|
|
114
|
-
[import_types.ChartType.Radar]: import_Radar.default,
|
|
115
|
-
[import_types.ChartType.Sankey]: import_Sankey.default,
|
|
116
|
-
[import_types.ChartType.Scatter]: import_Scatter.default,
|
|
117
|
-
[import_types.ChartType.Treemap]: import_Treemap.default,
|
|
118
|
-
[import_types.ChartType.Venn]: import_Venn.default,
|
|
119
|
-
[import_types.ChartType.Violin]: import_Violin.default,
|
|
120
|
-
[import_types.ChartType.Waterfall]: import_Waterfall.default,
|
|
121
|
-
[import_types.ChartType.Table]: import_Table.default,
|
|
122
|
-
[import_types.ChartType.WordCloud]: import_WordCloud.default,
|
|
123
|
-
[import_types.ChartType.OrganizationChart]: import_OrganizationChart.default
|
|
124
|
-
};
|
|
125
|
-
// Annotate the CommonJS export names for ESM import in node:
|
|
126
|
-
0 && (module.exports = {
|
|
127
|
-
Area,
|
|
128
|
-
Bar,
|
|
129
|
-
Boxplot,
|
|
130
|
-
Column,
|
|
131
|
-
DEFAULT_CHART_COMPONENTS,
|
|
132
|
-
DualAxes,
|
|
133
|
-
FishboneDiagram,
|
|
134
|
-
FlowDiagram,
|
|
135
|
-
Funnel,
|
|
136
|
-
HeatMap,
|
|
137
|
-
Histogram,
|
|
138
|
-
IndentedTree,
|
|
139
|
-
Line,
|
|
140
|
-
Liquid,
|
|
141
|
-
Map,
|
|
142
|
-
MindMap,
|
|
143
|
-
NetworkGraph,
|
|
144
|
-
OrganizationChart,
|
|
145
|
-
PathMap,
|
|
146
|
-
Pie,
|
|
147
|
-
PinMap,
|
|
148
|
-
Radar,
|
|
149
|
-
Sankey,
|
|
150
|
-
Scatter,
|
|
151
|
-
Spreadsheet,
|
|
152
|
-
Table,
|
|
153
|
-
Treemap,
|
|
154
|
-
Venn,
|
|
155
|
-
Violin,
|
|
156
|
-
VisText,
|
|
157
|
-
Waterfall,
|
|
158
|
-
WordCloud
|
|
159
|
-
});
|
package/dist/cjs/render.d.ts
DELETED