@visactor/react-vchart 1.12.0-alpha.6 → 1.12.0-alpha.8

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.
Files changed (69) hide show
  1. package/cjs/charts/AreaChart.d.ts +2 -2
  2. package/cjs/charts/AreaChart.js +1 -1
  3. package/cjs/charts/AreaChart.js.map +1 -1
  4. package/cjs/charts/CircularProgressChart.d.ts +3 -3
  5. package/cjs/charts/CircularProgressChart.js +1 -1
  6. package/cjs/charts/CircularProgressChart.js.map +1 -1
  7. package/cjs/charts/HeatmapChart.d.ts +2 -2
  8. package/cjs/charts/HeatmapChart.js +1 -1
  9. package/cjs/charts/HeatmapChart.js.map +1 -1
  10. package/cjs/charts/LineChart.d.ts +2 -2
  11. package/cjs/charts/LineChart.js +1 -1
  12. package/cjs/charts/LineChart.js.map +1 -1
  13. package/cjs/charts/LiquidChart.d.ts +2 -2
  14. package/cjs/charts/LiquidChart.js +1 -1
  15. package/cjs/charts/LiquidChart.js.map +1 -1
  16. package/cjs/charts/Pie3dChart.d.ts +2 -2
  17. package/cjs/charts/Pie3dChart.js +1 -1
  18. package/cjs/charts/Pie3dChart.js.map +1 -1
  19. package/cjs/charts/PieChart.d.ts +2 -2
  20. package/cjs/charts/PieChart.js +1 -1
  21. package/cjs/charts/PieChart.js.map +1 -1
  22. package/cjs/charts/VennChart.d.ts +10 -0
  23. package/cjs/charts/VennChart.js +12 -0
  24. package/cjs/charts/VennChart.js.map +1 -0
  25. package/cjs/charts/WaterfallChart.js +2 -1
  26. package/cjs/charts/index.d.ts +1 -0
  27. package/cjs/charts/index.js +2 -1
  28. package/cjs/charts/index.js.map +1 -1
  29. package/cjs/components/Player.js +1 -2
  30. package/cjs/components/Region.js +2 -1
  31. package/cjs/index.d.ts +1 -1
  32. package/cjs/index.js +1 -1
  33. package/cjs/index.js.map +1 -1
  34. package/cjs/series/Area.js +1 -1
  35. package/esm/charts/AreaChart.d.ts +2 -2
  36. package/esm/charts/AreaChart.js +2 -2
  37. package/esm/charts/AreaChart.js.map +1 -1
  38. package/esm/charts/CircularProgressChart.d.ts +3 -3
  39. package/esm/charts/CircularProgressChart.js +2 -2
  40. package/esm/charts/CircularProgressChart.js.map +1 -1
  41. package/esm/charts/HeatmapChart.d.ts +2 -2
  42. package/esm/charts/HeatmapChart.js +2 -2
  43. package/esm/charts/HeatmapChart.js.map +1 -1
  44. package/esm/charts/LineChart.d.ts +2 -2
  45. package/esm/charts/LineChart.js +2 -2
  46. package/esm/charts/LineChart.js.map +1 -1
  47. package/esm/charts/LiquidChart.d.ts +2 -2
  48. package/esm/charts/LiquidChart.js +2 -2
  49. package/esm/charts/LiquidChart.js.map +1 -1
  50. package/esm/charts/Pie3dChart.d.ts +2 -2
  51. package/esm/charts/Pie3dChart.js +2 -2
  52. package/esm/charts/Pie3dChart.js.map +1 -1
  53. package/esm/charts/PieChart.d.ts +2 -2
  54. package/esm/charts/PieChart.js +2 -2
  55. package/esm/charts/PieChart.js.map +1 -1
  56. package/esm/charts/VennChart.d.ts +10 -0
  57. package/esm/charts/VennChart.js +10 -0
  58. package/esm/charts/VennChart.js.map +1 -0
  59. package/esm/charts/WaterfallChart.js +2 -1
  60. package/esm/charts/index.d.ts +1 -0
  61. package/esm/charts/index.js +2 -0
  62. package/esm/charts/index.js.map +1 -1
  63. package/esm/components/Player.js +1 -2
  64. package/esm/components/Region.js +2 -1
  65. package/esm/index.d.ts +1 -1
  66. package/esm/index.js +1 -1
  67. package/esm/index.js.map +1 -1
  68. package/esm/series/Area.js +1 -1
  69. package/package.json +4 -4
@@ -1,6 +1,6 @@
1
- import React from 'react';
1
+ import type React from 'react';
2
2
  import type { IAreaChartSpec } from '@visactor/vchart';
3
- import { BaseChartProps } from './BaseChart';
3
+ import type { BaseChartProps } from './BaseChart';
4
4
  export interface AreaChartProps extends Omit<BaseChartProps, 'spec' | 'container' | 'type' | 'data'>, Omit<IAreaChartSpec, 'type'> {
5
5
  }
6
6
  export declare const AreaChart: React.ForwardRefExoticComponent<AreaChartProps & {
@@ -9,5 +9,5 @@ const vchart_1 = require("@visactor/vchart"), BaseChart_1 = require("./BaseChart
9
9
  exports.AreaChart = (0, BaseChart_1.createChart)("AreaChart", {
10
10
  type: "area",
11
11
  vchartConstrouctor: vchart_1.VChart
12
- }, [ vchart_1.registerAreaChart, vchart_1.registerLabel, ...register_1.cartesianComponentsRegisters ]);
12
+ }, [ vchart_1.registerAreaChart, vchart_1.registerLabel, vchart_1.registerTotalLabel, ...register_1.cartesianComponentsRegisters ]);
13
13
  //# sourceMappingURL=AreaChart.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/charts/AreaChart.tsx"],"names":[],"mappings":";;;AAEA,6CAA4E;AAC5E,2CAA0D;AAC1D,yCAA0D;AAM7C,QAAA,SAAS,GAAG,IAAA,uBAAW,EAClC,WAAW,EACX;IACE,IAAI,EAAE,MAAM;IACZ,kBAAkB,EAAE,eAA4B;CACjD,EACD,CAAC,0BAAiB,EAAE,sBAAa,EAAE,GAAG,uCAA4B,CAAC,CACpE,CAAC","file":"AreaChart.js","sourcesContent":["import React from 'react';\nimport type { IAreaChartSpec, IVChartConstructor } from '@visactor/vchart';\nimport { VChart, registerAreaChart, registerLabel } from '@visactor/vchart';\nimport { BaseChartProps, createChart } from './BaseChart';\nimport { cartesianComponentsRegisters } from './register';\n\nexport interface AreaChartProps\n extends Omit<BaseChartProps, 'spec' | 'container' | 'type' | 'data'>,\n Omit<IAreaChartSpec, 'type'> {}\n\nexport const AreaChart = createChart<React.PropsWithChildren<AreaChartProps> & { type: 'area' }>(\n 'AreaChart',\n {\n type: 'area',\n vchartConstrouctor: VChart as IVChartConstructor\n },\n [registerAreaChart, registerLabel, ...cartesianComponentsRegisters]\n);\n"]}
1
+ {"version":3,"sources":["../src/charts/AreaChart.tsx"],"names":[],"mappings":";;;AAEA,6CAAgG;AAEhG,2CAA0C;AAC1C,yCAA0D;AAM7C,QAAA,SAAS,GAAG,IAAA,uBAAW,EAClC,WAAW,EACX;IACE,IAAI,EAAE,MAAM;IACZ,kBAAkB,EAAE,eAA4B;CACjD,EACD,CAAC,0BAAiB,EAAE,sBAAa,EAAE,2BAAkB,EAAE,GAAG,uCAA4B,CAAC,CACxF,CAAC","file":"AreaChart.js","sourcesContent":["import type React from 'react';\nimport type { IAreaChartSpec, IVChartConstructor } from '@visactor/vchart';\nimport { VChart, registerAreaChart, registerLabel, registerTotalLabel } from '@visactor/vchart';\nimport type { BaseChartProps } from './BaseChart';\nimport { createChart } from './BaseChart';\nimport { cartesianComponentsRegisters } from './register';\n\nexport interface AreaChartProps\n extends Omit<BaseChartProps, 'spec' | 'container' | 'type' | 'data'>,\n Omit<IAreaChartSpec, 'type'> {}\n\nexport const AreaChart = createChart<React.PropsWithChildren<AreaChartProps> & { type: 'area' }>(\n 'AreaChart',\n {\n type: 'area',\n vchartConstrouctor: VChart as IVChartConstructor\n },\n [registerAreaChart, registerLabel, registerTotalLabel, ...cartesianComponentsRegisters]\n);\n"]}
@@ -1,6 +1,6 @@
1
- import React from 'react';
2
- import { ICircularProgressChartSpec } from '@visactor/vchart';
3
- import { BaseChartProps } from './BaseChart';
1
+ import type React from 'react';
2
+ import type { ICircularProgressChartSpec } from '@visactor/vchart';
3
+ import type { BaseChartProps } from './BaseChart';
4
4
  export interface CircularProgressChartProps extends Omit<BaseChartProps, 'spec' | 'container' | 'type' | 'data'>, Omit<ICircularProgressChartSpec, 'type'> {
5
5
  }
6
6
  export declare const CircularProgressChart: React.ForwardRefExoticComponent<CircularProgressChartProps & {
@@ -9,5 +9,5 @@ const vchart_1 = require("@visactor/vchart"), BaseChart_1 = require("./BaseChart
9
9
  exports.CircularProgressChart = (0, BaseChart_1.createChart)("CircularProgressChart", {
10
10
  type: "circularProgress",
11
11
  vchartConstrouctor: vchart_1.VChart
12
- }, [ vchart_1.registerCircularProgressChart, vchart_1.registerLabel, ...register_1.polarComponentsRegisters ]);
12
+ }, [ vchart_1.registerCircularProgressChart, vchart_1.registerLabel, vchart_1.registerIndicator, ...register_1.polarComponentsRegisters ]);
13
13
  //# sourceMappingURL=CircularProgressChart.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/charts/CircularProgressChart.tsx"],"names":[],"mappings":";;;AAEA,6CAAwF;AACxF,2CAA0D;AAC1D,yCAAsD;AAMzC,QAAA,qBAAqB,GAAG,IAAA,uBAAW,EAG9C,uBAAuB,EACvB;IACE,IAAI,EAAE,kBAAkB;IACxB,kBAAkB,EAAE,eAA4B;CACjD,EACD,CAAC,sCAA6B,EAAE,sBAAa,EAAE,GAAG,mCAAwB,CAAC,CAC5E,CAAC","file":"CircularProgressChart.js","sourcesContent":["import React from 'react';\nimport { ICircularProgressChartSpec, IVChartConstructor } from '@visactor/vchart';\nimport { VChart, registerCircularProgressChart, registerLabel } from '@visactor/vchart';\nimport { BaseChartProps, createChart } from './BaseChart';\nimport { polarComponentsRegisters } from './register';\n\nexport interface CircularProgressChartProps\n extends Omit<BaseChartProps, 'spec' | 'container' | 'type' | 'data'>,\n Omit<ICircularProgressChartSpec, 'type'> {}\n\nexport const CircularProgressChart = createChart<\n React.PropsWithChildren<CircularProgressChartProps> & { type: 'circularProgress' }\n>(\n 'CircularProgressChart',\n {\n type: 'circularProgress',\n vchartConstrouctor: VChart as IVChartConstructor\n },\n [registerCircularProgressChart, registerLabel, ...polarComponentsRegisters]\n);\n"]}
1
+ {"version":3,"sources":["../src/charts/CircularProgressChart.tsx"],"names":[],"mappings":";;;AAEA,6CAA2G;AAE3G,2CAA0C;AAC1C,yCAAsD;AAMzC,QAAA,qBAAqB,GAAG,IAAA,uBAAW,EAG9C,uBAAuB,EACvB;IACE,IAAI,EAAE,kBAAkB;IACxB,kBAAkB,EAAE,eAA4B;CACjD,EACD,CAAC,sCAA6B,EAAE,sBAAa,EAAE,0BAAiB,EAAE,GAAG,mCAAwB,CAAC,CAC/F,CAAC","file":"CircularProgressChart.js","sourcesContent":["import type React from 'react';\nimport type { ICircularProgressChartSpec, IVChartConstructor } from '@visactor/vchart';\nimport { VChart, registerCircularProgressChart, registerLabel, registerIndicator } from '@visactor/vchart';\nimport type { BaseChartProps } from './BaseChart';\nimport { createChart } from './BaseChart';\nimport { polarComponentsRegisters } from './register';\n\nexport interface CircularProgressChartProps\n extends Omit<BaseChartProps, 'spec' | 'container' | 'type' | 'data'>,\n Omit<ICircularProgressChartSpec, 'type'> {}\n\nexport const CircularProgressChart = createChart<\n React.PropsWithChildren<CircularProgressChartProps> & { type: 'circularProgress' }\n>(\n 'CircularProgressChart',\n {\n type: 'circularProgress',\n vchartConstrouctor: VChart as IVChartConstructor\n },\n [registerCircularProgressChart, registerLabel, registerIndicator, ...polarComponentsRegisters]\n);\n"]}
@@ -1,6 +1,6 @@
1
- import React from 'react';
1
+ import type React from 'react';
2
2
  import type { IHeatmapChartSpec } from '@visactor/vchart';
3
- import { BaseChartProps } from './BaseChart';
3
+ import type { BaseChartProps } from './BaseChart';
4
4
  export interface HeatmapChartProps extends Omit<BaseChartProps, 'spec' | 'container' | 'type' | 'data'>, Omit<IHeatmapChartSpec, 'type'> {
5
5
  }
6
6
  export declare const HeatmapChart: React.ForwardRefExoticComponent<HeatmapChartProps & {
@@ -9,5 +9,5 @@ const vchart_1 = require("@visactor/vchart"), BaseChart_1 = require("./BaseChart
9
9
  exports.HeatmapChart = (0, BaseChart_1.createChart)("HeatmapChart", {
10
10
  type: "heatmap",
11
11
  vchartConstrouctor: vchart_1.VChart
12
- }, [ vchart_1.registerHeatmapChart, vchart_1.registerCartesianBandAxis, vchart_1.registerCartesianCrossHair, vchart_1.registerLabel, ...register_1.cartesianComponentsRegisters ]);
12
+ }, [ vchart_1.registerHeatmapChart, vchart_1.registerLabel, ...register_1.cartesianComponentsRegisters ]);
13
13
  //# sourceMappingURL=HeatmapChart.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/charts/HeatmapChart.tsx"],"names":[],"mappings":";;;AAEA,6CAM0B;AAC1B,2CAA0D;AAC1D,yCAA0D;AAQ7C,QAAA,YAAY,GAAG,IAAA,uBAAW,EACrC,cAAc,EACd;IACE,IAAI,EAAE,SAAS;IACf,kBAAkB,EAAE,eAA4B;CACjD,EACD;IACE,6BAAoB;IACpB,kCAAyB;IACzB,mCAA0B;IAC1B,sBAAa;IACb,GAAG,uCAA4B;CAChC,CACF,CAAC","file":"HeatmapChart.js","sourcesContent":["import React from 'react';\nimport type { IHeatmapChartSpec, IVChartConstructor } from '@visactor/vchart';\nimport {\n VChart,\n registerHeatmapChart,\n registerCartesianBandAxis,\n registerCartesianCrossHair,\n registerLabel\n} from '@visactor/vchart';\nimport { BaseChartProps, createChart } from './BaseChart';\nimport { cartesianComponentsRegisters } from './register';\n\nexport interface HeatmapChartProps\n extends Omit<BaseChartProps, 'spec' | 'container' | 'type' | 'data'>,\n Omit<IHeatmapChartSpec, 'type'> {\n //\n}\n\nexport const HeatmapChart = createChart<React.PropsWithChildren<HeatmapChartProps> & { type: 'heatmap' }>(\n 'HeatmapChart',\n {\n type: 'heatmap',\n vchartConstrouctor: VChart as IVChartConstructor\n },\n [\n registerHeatmapChart,\n registerCartesianBandAxis,\n registerCartesianCrossHair,\n registerLabel,\n ...cartesianComponentsRegisters\n ]\n);\n"]}
1
+ {"version":3,"sources":["../src/charts/HeatmapChart.tsx"],"names":[],"mappings":";;;AAEA,6CAA+E;AAE/E,2CAA0C;AAC1C,yCAA0D;AAQ7C,QAAA,YAAY,GAAG,IAAA,uBAAW,EACrC,cAAc,EACd;IACE,IAAI,EAAE,SAAS;IACf,kBAAkB,EAAE,eAA4B;CACjD,EACD,CAAC,6BAAoB,EAAE,sBAAa,EAAE,GAAG,uCAA4B,CAAC,CACvE,CAAC","file":"HeatmapChart.js","sourcesContent":["import type React from 'react';\nimport type { IHeatmapChartSpec, IVChartConstructor } from '@visactor/vchart';\nimport { VChart, registerHeatmapChart, registerLabel } from '@visactor/vchart';\nimport type { BaseChartProps } from './BaseChart';\nimport { createChart } from './BaseChart';\nimport { cartesianComponentsRegisters } from './register';\n\nexport interface HeatmapChartProps\n extends Omit<BaseChartProps, 'spec' | 'container' | 'type' | 'data'>,\n Omit<IHeatmapChartSpec, 'type'> {\n //\n}\n\nexport const HeatmapChart = createChart<React.PropsWithChildren<HeatmapChartProps> & { type: 'heatmap' }>(\n 'HeatmapChart',\n {\n type: 'heatmap',\n vchartConstrouctor: VChart as IVChartConstructor\n },\n [registerHeatmapChart, registerLabel, ...cartesianComponentsRegisters]\n);\n"]}
@@ -1,6 +1,6 @@
1
- import React from 'react';
1
+ import type React from 'react';
2
2
  import type { ILineChartSpec } from '@visactor/vchart';
3
- import { BaseChartProps } from './BaseChart';
3
+ import type { BaseChartProps } from './BaseChart';
4
4
  export interface LineChartProps extends Omit<BaseChartProps, 'spec' | 'container' | 'type' | 'data'>, Omit<ILineChartSpec, 'type'> {
5
5
  }
6
6
  export declare const LineChart: React.ForwardRefExoticComponent<LineChartProps & {
@@ -9,5 +9,5 @@ const vchart_1 = require("@visactor/vchart"), BaseChart_1 = require("./BaseChart
9
9
  exports.LineChart = (0, BaseChart_1.createChart)("LineChart", {
10
10
  type: "line",
11
11
  vchartConstrouctor: vchart_1.VChart
12
- }, [ vchart_1.registerLineChart, vchart_1.registerLabel, vchart_1.registerTotalLabel, ...register_1.cartesianComponentsRegisters ]);
12
+ }, [ vchart_1.registerLineChart, vchart_1.registerLabel, ...register_1.cartesianComponentsRegisters ]);
13
13
  //# sourceMappingURL=LineChart.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/charts/LineChart.tsx"],"names":[],"mappings":";;;AAEA,6CAAgG;AAChG,2CAA0D;AAC1D,yCAA0D;AAM7C,QAAA,SAAS,GAAG,IAAA,uBAAW,EAClC,WAAW,EACX;IACE,IAAI,EAAE,MAAM;IACZ,kBAAkB,EAAE,eAA4B;CACjD,EACD,CAAC,0BAAiB,EAAE,sBAAa,EAAE,2BAAkB,EAAE,GAAG,uCAA4B,CAAC,CACxF,CAAC","file":"LineChart.js","sourcesContent":["import React from 'react';\nimport type { ILineChartSpec, IVChartConstructor } from '@visactor/vchart';\nimport { VChart, registerLineChart, registerLabel, registerTotalLabel } from '@visactor/vchart';\nimport { BaseChartProps, createChart } from './BaseChart';\nimport { cartesianComponentsRegisters } from './register';\n\nexport interface LineChartProps\n extends Omit<BaseChartProps, 'spec' | 'container' | 'type' | 'data'>,\n Omit<ILineChartSpec, 'type'> {}\n\nexport const LineChart = createChart<React.PropsWithChildren<LineChartProps> & { type: 'line' }>(\n 'LineChart',\n {\n type: 'line',\n vchartConstrouctor: VChart as IVChartConstructor\n },\n [registerLineChart, registerLabel, registerTotalLabel, ...cartesianComponentsRegisters]\n);\n"]}
1
+ {"version":3,"sources":["../src/charts/LineChart.tsx"],"names":[],"mappings":";;;AAEA,6CAA4E;AAE5E,2CAA0C;AAC1C,yCAA0D;AAM7C,QAAA,SAAS,GAAG,IAAA,uBAAW,EAClC,WAAW,EACX;IACE,IAAI,EAAE,MAAM;IACZ,kBAAkB,EAAE,eAA4B;CACjD,EACD,CAAC,0BAAiB,EAAE,sBAAa,EAAE,GAAG,uCAA4B,CAAC,CACpE,CAAC","file":"LineChart.js","sourcesContent":["import type React from 'react';\nimport type { ILineChartSpec, IVChartConstructor } from '@visactor/vchart';\nimport { VChart, registerLineChart, registerLabel } from '@visactor/vchart';\nimport type { BaseChartProps } from './BaseChart';\nimport { createChart } from './BaseChart';\nimport { cartesianComponentsRegisters } from './register';\n\nexport interface LineChartProps\n extends Omit<BaseChartProps, 'spec' | 'container' | 'type' | 'data'>,\n Omit<ILineChartSpec, 'type'> {}\n\nexport const LineChart = createChart<React.PropsWithChildren<LineChartProps> & { type: 'line' }>(\n 'LineChart',\n {\n type: 'line',\n vchartConstrouctor: VChart as IVChartConstructor\n },\n [registerLineChart, registerLabel, ...cartesianComponentsRegisters]\n);\n"]}
@@ -1,6 +1,6 @@
1
- import React from 'react';
1
+ import type React from 'react';
2
2
  import type { ILiquidChartSpec } from '@visactor/vchart';
3
- import { BaseChartProps } from './BaseChart';
3
+ import type { BaseChartProps } from './BaseChart';
4
4
  export interface LiquidChartProps extends Omit<BaseChartProps, 'spec' | 'container' | 'type' | 'data' | 'data'>, Omit<ILiquidChartSpec, 'type'> {
5
5
  }
6
6
  export declare const LiquidChart: React.ForwardRefExoticComponent<LiquidChartProps & {
@@ -9,5 +9,5 @@ const vchart_1 = require("@visactor/vchart"), BaseChart_1 = require("./BaseChart
9
9
  exports.LiquidChart = (0, BaseChart_1.createChart)("LiquidChart", {
10
10
  type: "liquid",
11
11
  vchartConstrouctor: vchart_1.VChart
12
- }, [ vchart_1.registerLiquidChart, ...register_1.simpleComponentsRegisters ]);
12
+ }, [ vchart_1.registerLiquidChart, vchart_1.registerIndicator, ...register_1.simpleComponentsRegisters ]);
13
13
  //# sourceMappingURL=LiquidChart.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/charts/LiquidChart.tsx"],"names":[],"mappings":";;;AAEA,6CAA+D;AAC/D,2CAA0D;AAC1D,yCAAuD;AAM1C,QAAA,WAAW,GAAG,IAAA,uBAAW,EACpC,aAAa,EACb;IACE,IAAI,EAAE,QAAQ;IACd,kBAAkB,EAAE,eAA4B;CACjD,EACD,CAAC,4BAAmB,EAAE,GAAG,oCAAyB,CAAC,CACpD,CAAC","file":"LiquidChart.js","sourcesContent":["import React from 'react';\nimport type { ILiquidChartSpec, IVChartConstructor } from '@visactor/vchart';\nimport { VChart, registerLiquidChart } from '@visactor/vchart';\nimport { BaseChartProps, createChart } from './BaseChart';\nimport { simpleComponentsRegisters } from './register';\n\nexport interface LiquidChartProps\n extends Omit<BaseChartProps, 'spec' | 'container' | 'type' | 'data' | 'data'>,\n Omit<ILiquidChartSpec, 'type'> {}\n\nexport const LiquidChart = createChart<React.PropsWithChildren<LiquidChartProps> & { type: 'liquid' }>(\n 'LiquidChart',\n {\n type: 'liquid',\n vchartConstrouctor: VChart as IVChartConstructor\n },\n [registerLiquidChart, ...simpleComponentsRegisters]\n);\n"]}
1
+ {"version":3,"sources":["../src/charts/LiquidChart.tsx"],"names":[],"mappings":";;;AAEA,6CAAkF;AAElF,2CAA0C;AAC1C,yCAAuD;AAM1C,QAAA,WAAW,GAAG,IAAA,uBAAW,EACpC,aAAa,EACb;IACE,IAAI,EAAE,QAAQ;IACd,kBAAkB,EAAE,eAA4B;CACjD,EACD,CAAC,4BAAmB,EAAE,0BAAiB,EAAE,GAAG,oCAAyB,CAAC,CACvE,CAAC","file":"LiquidChart.js","sourcesContent":["import type React from 'react';\nimport type { ILiquidChartSpec, IVChartConstructor } from '@visactor/vchart';\nimport { VChart, registerLiquidChart, registerIndicator } from '@visactor/vchart';\nimport type { BaseChartProps } from './BaseChart';\nimport { createChart } from './BaseChart';\nimport { simpleComponentsRegisters } from './register';\n\nexport interface LiquidChartProps\n extends Omit<BaseChartProps, 'spec' | 'container' | 'type' | 'data' | 'data'>,\n Omit<ILiquidChartSpec, 'type'> {}\n\nexport const LiquidChart = createChart<React.PropsWithChildren<LiquidChartProps> & { type: 'liquid' }>(\n 'LiquidChart',\n {\n type: 'liquid',\n vchartConstrouctor: VChart as IVChartConstructor\n },\n [registerLiquidChart, registerIndicator, ...simpleComponentsRegisters]\n);\n"]}
@@ -1,6 +1,6 @@
1
- import React from 'react';
1
+ import type React from 'react';
2
2
  import type { IPie3dChartSpec } from '@visactor/vchart';
3
- import { BaseChartProps } from './BaseChart';
3
+ import type { BaseChartProps } from './BaseChart';
4
4
  export interface Pie3dChartProps extends Omit<BaseChartProps, 'spec' | 'container' | 'type' | 'data'>, Omit<IPie3dChartSpec, 'type'> {
5
5
  }
6
6
  export declare const Pie3dChart: React.ForwardRefExoticComponent<Pie3dChartProps & {
@@ -9,5 +9,5 @@ const vchart_1 = require("@visactor/vchart"), BaseChart_1 = require("./BaseChart
9
9
  exports.Pie3dChart = (0, BaseChart_1.createChart)("Pie3dChart", {
10
10
  type: "pie3d",
11
11
  vchartConstrouctor: vchart_1.VChart
12
- }, [ vchart_1.registerPie3dChart, vchart_1.registerLabel, ...register_1.simpleComponentsRegisters ]);
12
+ }, [ vchart_1.registerPie3dChart, vchart_1.registerLabel, vchart_1.registerIndicator, ...register_1.simpleComponentsRegisters ]);
13
13
  //# sourceMappingURL=Pie3dChart.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/charts/Pie3dChart.tsx"],"names":[],"mappings":";;;AAEA,6CAA6E;AAC7E,2CAA0D;AAC1D,yCAAuD;AAM1C,QAAA,UAAU,GAAG,IAAA,uBAAW,EACnC,YAAY,EACZ;IACE,IAAI,EAAE,OAAO;IACb,kBAAkB,EAAE,eAA4B;CACjD,EACD,CAAC,2BAAkB,EAAE,sBAAa,EAAE,GAAG,oCAAyB,CAAC,CAClE,CAAC","file":"Pie3dChart.js","sourcesContent":["import React from 'react';\nimport type { IPie3dChartSpec, IVChartConstructor } from '@visactor/vchart';\nimport { VChart, registerPie3dChart, registerLabel } from '@visactor/vchart';\nimport { BaseChartProps, createChart } from './BaseChart';\nimport { simpleComponentsRegisters } from './register';\n\nexport interface Pie3dChartProps\n extends Omit<BaseChartProps, 'spec' | 'container' | 'type' | 'data'>,\n Omit<IPie3dChartSpec, 'type'> {}\n\nexport const Pie3dChart = createChart<React.PropsWithChildren<Pie3dChartProps> & { type: 'pie3d' }>(\n 'Pie3dChart',\n {\n type: 'pie3d',\n vchartConstrouctor: VChart as IVChartConstructor\n },\n [registerPie3dChart, registerLabel, ...simpleComponentsRegisters]\n);\n"]}
1
+ {"version":3,"sources":["../src/charts/Pie3dChart.tsx"],"names":[],"mappings":";;;AAEA,6CAAgG;AAEhG,2CAA0C;AAC1C,yCAAuD;AAM1C,QAAA,UAAU,GAAG,IAAA,uBAAW,EACnC,YAAY,EACZ;IACE,IAAI,EAAE,OAAO;IACb,kBAAkB,EAAE,eAA4B;CACjD,EACD,CAAC,2BAAkB,EAAE,sBAAa,EAAE,0BAAiB,EAAE,GAAG,oCAAyB,CAAC,CACrF,CAAC","file":"Pie3dChart.js","sourcesContent":["import type React from 'react';\nimport type { IPie3dChartSpec, IVChartConstructor } from '@visactor/vchart';\nimport { VChart, registerPie3dChart, registerIndicator, registerLabel } from '@visactor/vchart';\nimport type { BaseChartProps } from './BaseChart';\nimport { createChart } from './BaseChart';\nimport { simpleComponentsRegisters } from './register';\n\nexport interface Pie3dChartProps\n extends Omit<BaseChartProps, 'spec' | 'container' | 'type' | 'data'>,\n Omit<IPie3dChartSpec, 'type'> {}\n\nexport const Pie3dChart = createChart<React.PropsWithChildren<Pie3dChartProps> & { type: 'pie3d' }>(\n 'Pie3dChart',\n {\n type: 'pie3d',\n vchartConstrouctor: VChart as IVChartConstructor\n },\n [registerPie3dChart, registerLabel, registerIndicator, ...simpleComponentsRegisters]\n);\n"]}
@@ -1,6 +1,6 @@
1
- import React from 'react';
1
+ import type React from 'react';
2
2
  import type { IPieChartSpec } from '@visactor/vchart';
3
- import { BaseChartProps } from './BaseChart';
3
+ import type { BaseChartProps } from './BaseChart';
4
4
  export interface PieChartProps extends Omit<BaseChartProps, 'spec' | 'container' | 'type' | 'data'>, Omit<IPieChartSpec, 'type'> {
5
5
  }
6
6
  export declare const PieChart: React.ForwardRefExoticComponent<PieChartProps & {
@@ -9,5 +9,5 @@ const vchart_1 = require("@visactor/vchart"), BaseChart_1 = require("./BaseChart
9
9
  exports.PieChart = (0, BaseChart_1.createChart)("PieChart", {
10
10
  type: "pie",
11
11
  vchartConstrouctor: vchart_1.VChart
12
- }, [ vchart_1.registerPieChart, vchart_1.registerLabel, ...register_1.simpleComponentsRegisters ]);
12
+ }, [ vchart_1.registerPieChart, vchart_1.registerLabel, vchart_1.registerIndicator, ...register_1.simpleComponentsRegisters ]);
13
13
  //# sourceMappingURL=PieChart.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/charts/PieChart.tsx"],"names":[],"mappings":";;;AAEA,6CAA2E;AAC3E,2CAA0D;AAC1D,yCAAuD;AAM1C,QAAA,QAAQ,GAAG,IAAA,uBAAW,EACjC,UAAU,EACV;IACE,IAAI,EAAE,KAAK;IACX,kBAAkB,EAAE,eAA4B;CACjD,EACD,CAAC,yBAAgB,EAAE,sBAAa,EAAE,GAAG,oCAAyB,CAAC,CAChE,CAAC","file":"PieChart.js","sourcesContent":["import React from 'react';\nimport type { IPieChartSpec, IVChartConstructor } from '@visactor/vchart';\nimport { VChart, registerPieChart, registerLabel } from '@visactor/vchart';\nimport { BaseChartProps, createChart } from './BaseChart';\nimport { simpleComponentsRegisters } from './register';\n\nexport interface PieChartProps\n extends Omit<BaseChartProps, 'spec' | 'container' | 'type' | 'data'>,\n Omit<IPieChartSpec, 'type'> {}\n\nexport const PieChart = createChart<React.PropsWithChildren<PieChartProps> & { type: 'pie' }>(\n 'PieChart',\n {\n type: 'pie',\n vchartConstrouctor: VChart as IVChartConstructor\n },\n [registerPieChart, registerLabel, ...simpleComponentsRegisters]\n);\n"]}
1
+ {"version":3,"sources":["../src/charts/PieChart.tsx"],"names":[],"mappings":";;;AAEA,6CAA8F;AAE9F,2CAA0C;AAC1C,yCAAuD;AAM1C,QAAA,QAAQ,GAAG,IAAA,uBAAW,EACjC,UAAU,EACV;IACE,IAAI,EAAE,KAAK;IACX,kBAAkB,EAAE,eAA4B;CACjD,EACD,CAAC,yBAAgB,EAAE,sBAAa,EAAE,0BAAiB,EAAE,GAAG,oCAAyB,CAAC,CACnF,CAAC","file":"PieChart.js","sourcesContent":["import type React from 'react';\nimport type { IPieChartSpec, IVChartConstructor } from '@visactor/vchart';\nimport { VChart, registerPieChart, registerLabel, registerIndicator } from '@visactor/vchart';\nimport type { BaseChartProps } from './BaseChart';\nimport { createChart } from './BaseChart';\nimport { simpleComponentsRegisters } from './register';\n\nexport interface PieChartProps\n extends Omit<BaseChartProps, 'spec' | 'container' | 'type' | 'data'>,\n Omit<IPieChartSpec, 'type'> {}\n\nexport const PieChart = createChart<React.PropsWithChildren<PieChartProps> & { type: 'pie' }>(\n 'PieChart',\n {\n type: 'pie',\n vchartConstrouctor: VChart as IVChartConstructor\n },\n [registerPieChart, registerLabel, registerIndicator, ...simpleComponentsRegisters]\n);\n"]}
@@ -0,0 +1,10 @@
1
+ import type React from 'react';
2
+ import type { IVennChartSpec } from '@visactor/vchart';
3
+ import type { BaseChartProps } from './BaseChart';
4
+ export interface VennChartProps extends Omit<BaseChartProps, 'spec' | 'container' | 'type' | 'data'>, Omit<IVennChartSpec, 'type'> {
5
+ }
6
+ export declare const VennChart: React.ForwardRefExoticComponent<VennChartProps & {
7
+ children?: React.ReactNode;
8
+ } & {
9
+ type: 'venn';
10
+ } & import("../containers/withContainer").ContainerProps & React.RefAttributes<any>>;
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: !0
5
+ }), exports.VennChart = void 0;
6
+
7
+ const vchart_1 = require("@visactor/vchart"), BaseChart_1 = require("./BaseChart"), register_1 = require("./register");
8
+
9
+ exports.VennChart = (0, BaseChart_1.createChart)("VennChart", {
10
+ type: "venn",
11
+ vchartConstrouctor: vchart_1.VChart
12
+ }, [ vchart_1.registerVennChart, ...register_1.simpleComponentsRegisters ]);
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/charts/VennChart.tsx"],"names":[],"mappings":";;;AAEA,6CAA6D;AAE7D,2CAA0C;AAC1C,yCAAuD;AAM1C,QAAA,SAAS,GAAG,IAAA,uBAAW,EAClC,WAAW,EACX;IACE,IAAI,EAAE,MAAM;IACZ,kBAAkB,EAAE,eAA4B;CACjD,EACD,CAAC,0BAAiB,EAAE,GAAG,oCAAyB,CAAC,CAClD,CAAC","file":"VennChart.js","sourcesContent":["import type React from 'react';\nimport type { IVennChartSpec, IVChartConstructor } from '@visactor/vchart';\nimport { VChart, registerVennChart } from '@visactor/vchart';\nimport type { BaseChartProps } from './BaseChart';\nimport { createChart } from './BaseChart';\nimport { simpleComponentsRegisters } from './register';\n\nexport interface VennChartProps\n extends Omit<BaseChartProps, 'spec' | 'container' | 'type' | 'data'>,\n Omit<IVennChartSpec, 'type'> {}\n\nexport const VennChart = createChart<React.PropsWithChildren<VennChartProps> & { type: 'venn' }>(\n 'VennChart',\n {\n type: 'venn',\n vchartConstrouctor: VChart as IVChartConstructor\n },\n [registerVennChart, ...simpleComponentsRegisters]\n);\n"]}
@@ -9,4 +9,5 @@ const vchart_1 = require("@visactor/vchart"), BaseChart_1 = require("./BaseChart
9
9
  exports.WaterfallChart = (0, BaseChart_1.createChart)("WaterfallChart", {
10
10
  type: "waterfall",
11
11
  vchartConstrouctor: vchart_1.VChart
12
- }, [ vchart_1.registerWaterfallChart, vchart_1.registerLabel, vchart_1.registerTotalLabel, ...register_1.cartesianComponentsRegisters ]);
12
+ }, [ vchart_1.registerWaterfallChart, vchart_1.registerLabel, vchart_1.registerTotalLabel, ...register_1.cartesianComponentsRegisters ]);
13
+ //# sourceMappingURL=WaterfallChart.js.map
@@ -30,5 +30,6 @@ export * from './TreemapChart';
30
30
  export * from './WordCloudChart';
31
31
  export * from './WordCloud3dChart';
32
32
  export * from './WordCloudChart';
33
+ export * from './VennChart';
33
34
  export type { ChartOptions } from './BaseChart';
34
35
  export type { IData, IChartSpec } from '@visactor/vchart';
@@ -32,5 +32,6 @@ __exportStar(require("./RangeColumn3dChart"), exports), __exportStar(require("./
32
32
  __exportStar(require("./SankeyChart"), exports), __exportStar(require("./ScatterChart"), exports),
33
33
  __exportStar(require("./SequenceChart"), exports), __exportStar(require("./SunburstChart"), exports),
34
34
  __exportStar(require("./TreemapChart"), exports), __exportStar(require("./WordCloudChart"), exports),
35
- __exportStar(require("./WordCloud3dChart"), exports), __exportStar(require("./WordCloudChart"), exports);
35
+ __exportStar(require("./WordCloud3dChart"), exports), __exportStar(require("./WordCloudChart"), exports),
36
+ __exportStar(require("./VennChart"), exports);
36
37
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/charts/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8CAA4B;AAC5B,6CAA2B;AAC3B,+CAA6B;AAC7B,iDAA+B;AAE/B,uDAAqC;AACrC,0DAAwC;AACxC,gDAA8B;AAC9B,qDAAmC;AAEnC,gDAA8B;AAC9B,kDAAgC;AAChC,+CAA6B;AAC7B,iDAA+B;AAC/B,qDAAmC;AACnC,mDAAiC;AAEjC,wDAAsC;AACtC,8CAA4B;AAC5B,gDAA8B;AAE9B,6CAA2B;AAC3B,6CAA2B;AAC3B,+CAA6B;AAC7B,+CAA6B;AAC7B,qDAAmC;AACnC,uDAAqC;AACrC,8CAA4B;AAE5B,gDAA8B;AAC9B,iDAA+B;AAC/B,kDAAgC;AAChC,kDAAgC;AAEhC,iDAA+B;AAC/B,mDAAiC;AACjC,qDAAmC;AACnC,mDAAiC","file":"index.js","sourcesContent":["export * from './AreaChart';\nexport * from './BarChart';\nexport * from './Bar3dChart';\nexport * from './BoxPlotChart';\n\nexport * from './CirclePackingChart';\nexport * from './CircularProgressChart';\nexport * from './CommonChart';\nexport * from './CorrelationChart';\n\nexport * from './FunnelChart';\nexport * from './Funnel3dChart';\nexport * from './GaugeChart';\nexport * from './HeatmapChart';\nexport * from './Histogram3dChart';\nexport * from './HistogramChart';\n\nexport * from './LinearProgressChart';\nexport * from './LineChart';\nexport * from './LiquidChart';\n\nexport * from './MapChart';\nexport * from './PieChart';\nexport * from './Pie3dChart';\nexport * from './RadarChart';\nexport * from './RangeColumnChart';\nexport * from './RangeColumn3dChart';\nexport * from './RoseChart';\n\nexport * from './SankeyChart';\nexport * from './ScatterChart';\nexport * from './SequenceChart';\nexport * from './SunburstChart';\n\nexport * from './TreemapChart';\nexport * from './WordCloudChart';\nexport * from './WordCloud3dChart';\nexport * from './WordCloudChart';\n\nexport type { ChartOptions } from './BaseChart';\nexport type { IData, IChartSpec } from '@visactor/vchart';\n"]}
1
+ {"version":3,"sources":["../src/charts/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8CAA4B;AAC5B,6CAA2B;AAC3B,+CAA6B;AAC7B,iDAA+B;AAE/B,uDAAqC;AACrC,0DAAwC;AACxC,gDAA8B;AAC9B,qDAAmC;AAEnC,gDAA8B;AAC9B,kDAAgC;AAChC,+CAA6B;AAC7B,iDAA+B;AAC/B,qDAAmC;AACnC,mDAAiC;AAEjC,wDAAsC;AACtC,8CAA4B;AAC5B,gDAA8B;AAE9B,6CAA2B;AAC3B,6CAA2B;AAC3B,+CAA6B;AAC7B,+CAA6B;AAC7B,qDAAmC;AACnC,uDAAqC;AACrC,8CAA4B;AAE5B,gDAA8B;AAC9B,iDAA+B;AAC/B,kDAAgC;AAChC,kDAAgC;AAEhC,iDAA+B;AAC/B,mDAAiC;AACjC,qDAAmC;AACnC,mDAAiC;AACjC,8CAA4B","file":"index.js","sourcesContent":["export * from './AreaChart';\nexport * from './BarChart';\nexport * from './Bar3dChart';\nexport * from './BoxPlotChart';\n\nexport * from './CirclePackingChart';\nexport * from './CircularProgressChart';\nexport * from './CommonChart';\nexport * from './CorrelationChart';\n\nexport * from './FunnelChart';\nexport * from './Funnel3dChart';\nexport * from './GaugeChart';\nexport * from './HeatmapChart';\nexport * from './Histogram3dChart';\nexport * from './HistogramChart';\n\nexport * from './LinearProgressChart';\nexport * from './LineChart';\nexport * from './LiquidChart';\n\nexport * from './MapChart';\nexport * from './PieChart';\nexport * from './Pie3dChart';\nexport * from './RadarChart';\nexport * from './RangeColumnChart';\nexport * from './RangeColumn3dChart';\nexport * from './RoseChart';\n\nexport * from './SankeyChart';\nexport * from './ScatterChart';\nexport * from './SequenceChart';\nexport * from './SunburstChart';\n\nexport * from './TreemapChart';\nexport * from './WordCloudChart';\nexport * from './WordCloud3dChart';\nexport * from './WordCloudChart';\nexport * from './VennChart';\n\nexport type { ChartOptions } from './BaseChart';\nexport type { IData, IChartSpec } from '@visactor/vchart';\n"]}
@@ -6,5 +6,4 @@ Object.defineProperty(exports, "__esModule", {
6
6
 
7
7
  const eventsUtils_1 = require("../eventsUtils"), BaseComponent_1 = require("./BaseComponent"), vchart_1 = require("@visactor/vchart");
8
8
 
9
- exports.Player = (0, BaseComponent_1.createComponent)("Player", "player", eventsUtils_1.PLAYER_CUSTOMIZED_EVENTS, !0, [ vchart_1.registerPlayer ]);
10
- //# sourceMappingURL=Player.js.map
9
+ exports.Player = (0, BaseComponent_1.createComponent)("Player", "player", eventsUtils_1.PLAYER_CUSTOMIZED_EVENTS, !0, [ vchart_1.registerPlayer ]);
@@ -6,4 +6,5 @@ Object.defineProperty(exports, "__esModule", {
6
6
 
7
7
  const BaseComponent_1 = require("./BaseComponent");
8
8
 
9
- exports.Region = (0, BaseComponent_1.createComponent)("Region", "region");
9
+ exports.Region = (0, BaseComponent_1.createComponent)("Region", "region");
10
+ //# sourceMappingURL=Region.js.map
package/cjs/index.d.ts CHANGED
@@ -4,5 +4,5 @@ export * from './components';
4
4
  export * from './VChart';
5
5
  export * from './VChartSimple';
6
6
  export { VChart as VChartCore } from '@visactor/vchart';
7
- export declare const version = "1.12.0-alpha.6";
7
+ export declare const version = "1.12.0-alpha.8";
8
8
  export type { IAreaChartSpec, IBarChartSpec, IBar3dChartSpec, IBoxPlotChartSpec, ICirclePackingChartSpec, ICommonChartSpec, IFunnelChartSpec, IFunnel3dChartSpec, IGaugeChartSpec, IHeatmapChartSpec, IHistogramChartSpec, IHistogram3dChartSpec, ILineChartSpec, IMapChartSpec, IPieChartSpec, IPie3dChartSpec, ICircularProgressChartSpec, ILinearProgressChartSpec, IRadarChartSpec, IRangeColumnChartSpec, IRangeColumn3dChartSpec, IRangeAreaChartSpec, IRoseChartSpec, IScatterChartSpec, ISankeyChartSpec, ISequenceChartSpec, ISunburstChartSpec, ITreemapChartSpec, IWaterfallChartSpec, ICorrelationChartSpec, ILiquidChartSpec, IWordCloud3dChartSpec, IWordCloudChartSpec, IPolarChartSpec, ICartesianChartSpec, ITheme, IInitOption, ISpec, IVChart } from '@visactor/vchart';
package/cjs/index.js CHANGED
@@ -28,5 +28,5 @@ Object.defineProperty(exports, "VChartCore", {
28
28
  get: function() {
29
29
  return vchart_1.VChart;
30
30
  }
31
- }), exports.version = "1.12.0-alpha.6";
31
+ }), exports.version = "1.12.0-alpha.8";
32
32
  //# sourceMappingURL=index.js.map
package/cjs/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,2CAAyB;AACzB,2CAAyB;AACzB,+CAA6B;AAC7B,2CAAyB;AACzB,iDAA+B;AAC/B,2CAAwD;AAA/C,oGAAA,MAAM,OAAc;AAGhB,QAAA,OAAO,GAAG,gBAAgB,CAAC","file":"index.js","sourcesContent":["export * from './charts';\nexport * from './series';\nexport * from './components';\nexport * from './VChart';\nexport * from './VChartSimple';\nexport { VChart as VChartCore } from '@visactor/vchart';\n\n// export the version, since @1.8.3\nexport const version = \"1.12.0-alpha.6\";\n\nexport type {\n IAreaChartSpec,\n IBarChartSpec,\n IBar3dChartSpec,\n IBoxPlotChartSpec,\n ICirclePackingChartSpec,\n ICommonChartSpec,\n IFunnelChartSpec,\n IFunnel3dChartSpec,\n IGaugeChartSpec,\n IHeatmapChartSpec,\n IHistogramChartSpec,\n IHistogram3dChartSpec,\n ILineChartSpec,\n IMapChartSpec,\n IPieChartSpec,\n IPie3dChartSpec,\n ICircularProgressChartSpec,\n ILinearProgressChartSpec,\n IRadarChartSpec,\n IRangeColumnChartSpec,\n IRangeColumn3dChartSpec,\n IRangeAreaChartSpec,\n IRoseChartSpec,\n IScatterChartSpec,\n ISankeyChartSpec,\n ISequenceChartSpec,\n ISunburstChartSpec,\n ITreemapChartSpec,\n IWaterfallChartSpec,\n ICorrelationChartSpec,\n ILiquidChartSpec,\n IWordCloud3dChartSpec,\n IWordCloudChartSpec,\n IPolarChartSpec,\n ICartesianChartSpec,\n ITheme,\n IInitOption,\n ISpec,\n IVChart\n} from '@visactor/vchart';\n"]}
1
+ {"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,2CAAyB;AACzB,2CAAyB;AACzB,+CAA6B;AAC7B,2CAAyB;AACzB,iDAA+B;AAC/B,2CAAwD;AAA/C,oGAAA,MAAM,OAAc;AAGhB,QAAA,OAAO,GAAG,gBAAgB,CAAC","file":"index.js","sourcesContent":["export * from './charts';\nexport * from './series';\nexport * from './components';\nexport * from './VChart';\nexport * from './VChartSimple';\nexport { VChart as VChartCore } from '@visactor/vchart';\n\n// export the version, since @1.8.3\nexport const version = \"1.12.0-alpha.8\";\n\nexport type {\n IAreaChartSpec,\n IBarChartSpec,\n IBar3dChartSpec,\n IBoxPlotChartSpec,\n ICirclePackingChartSpec,\n ICommonChartSpec,\n IFunnelChartSpec,\n IFunnel3dChartSpec,\n IGaugeChartSpec,\n IHeatmapChartSpec,\n IHistogramChartSpec,\n IHistogram3dChartSpec,\n ILineChartSpec,\n IMapChartSpec,\n IPieChartSpec,\n IPie3dChartSpec,\n ICircularProgressChartSpec,\n ILinearProgressChartSpec,\n IRadarChartSpec,\n IRangeColumnChartSpec,\n IRangeColumn3dChartSpec,\n IRangeAreaChartSpec,\n IRoseChartSpec,\n IScatterChartSpec,\n ISankeyChartSpec,\n ISequenceChartSpec,\n ISunburstChartSpec,\n ITreemapChartSpec,\n IWaterfallChartSpec,\n ICorrelationChartSpec,\n ILiquidChartSpec,\n IWordCloud3dChartSpec,\n IWordCloudChartSpec,\n IPolarChartSpec,\n ICartesianChartSpec,\n ITheme,\n IInitOption,\n ISpec,\n IVChart\n} from '@visactor/vchart';\n"]}
@@ -7,4 +7,4 @@ Object.defineProperty(exports, "__esModule", {
7
7
  const BaseSeries_1 = require("./BaseSeries"), vchart_1 = require("@visactor/vchart");
8
8
 
9
9
  exports.Area = (0, BaseSeries_1.createSeries)("Area", [ "area" ], "area", [ vchart_1.registerAreaSeries ]);
10
- //# sourceMappingURL=Area.js.map
10
+ //# sourceMappingURL=Area.js.map
@@ -1,6 +1,6 @@
1
- import React from 'react';
1
+ import type React from 'react';
2
2
  import type { IAreaChartSpec } from '@visactor/vchart';
3
- import { BaseChartProps } from './BaseChart';
3
+ import type { BaseChartProps } from './BaseChart';
4
4
  export interface AreaChartProps extends Omit<BaseChartProps, 'spec' | 'container' | 'type' | 'data'>, Omit<IAreaChartSpec, 'type'> {
5
5
  }
6
6
  export declare const AreaChart: React.ForwardRefExoticComponent<AreaChartProps & {
@@ -1,4 +1,4 @@
1
- import { VChart, registerAreaChart, registerLabel } from "@visactor/vchart";
1
+ import { VChart, registerAreaChart, registerLabel, registerTotalLabel } from "@visactor/vchart";
2
2
 
3
3
  import { createChart } from "./BaseChart";
4
4
 
@@ -7,5 +7,5 @@ import { cartesianComponentsRegisters } from "./register";
7
7
  export const AreaChart = createChart("AreaChart", {
8
8
  type: "area",
9
9
  vchartConstrouctor: VChart
10
- }, [ registerAreaChart, registerLabel, ...cartesianComponentsRegisters ]);
10
+ }, [ registerAreaChart, registerLabel, registerTotalLabel, ...cartesianComponentsRegisters ]);
11
11
  //# sourceMappingURL=AreaChart.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/charts/AreaChart.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,MAAM,EAAE,iBAAiB,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAC5E,OAAO,EAAkB,WAAW,EAAE,MAAM,aAAa,CAAC;AAC1D,OAAO,EAAE,4BAA4B,EAAE,MAAM,YAAY,CAAC;AAM1D,MAAM,CAAC,MAAM,SAAS,GAAG,WAAW,CAClC,WAAW,EACX;IACE,IAAI,EAAE,MAAM;IACZ,kBAAkB,EAAE,MAA4B;CACjD,EACD,CAAC,iBAAiB,EAAE,aAAa,EAAE,GAAG,4BAA4B,CAAC,CACpE,CAAC","file":"AreaChart.js","sourcesContent":["import React from 'react';\nimport type { IAreaChartSpec, IVChartConstructor } from '@visactor/vchart';\nimport { VChart, registerAreaChart, registerLabel } from '@visactor/vchart';\nimport { BaseChartProps, createChart } from './BaseChart';\nimport { cartesianComponentsRegisters } from './register';\n\nexport interface AreaChartProps\n extends Omit<BaseChartProps, 'spec' | 'container' | 'type' | 'data'>,\n Omit<IAreaChartSpec, 'type'> {}\n\nexport const AreaChart = createChart<React.PropsWithChildren<AreaChartProps> & { type: 'area' }>(\n 'AreaChart',\n {\n type: 'area',\n vchartConstrouctor: VChart as IVChartConstructor\n },\n [registerAreaChart, registerLabel, ...cartesianComponentsRegisters]\n);\n"]}
1
+ {"version":3,"sources":["../src/charts/AreaChart.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,MAAM,EAAE,iBAAiB,EAAE,aAAa,EAAE,kBAAkB,EAAE,MAAM,kBAAkB,CAAC;AAEhG,OAAO,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAC1C,OAAO,EAAE,4BAA4B,EAAE,MAAM,YAAY,CAAC;AAM1D,MAAM,CAAC,MAAM,SAAS,GAAG,WAAW,CAClC,WAAW,EACX;IACE,IAAI,EAAE,MAAM;IACZ,kBAAkB,EAAE,MAA4B;CACjD,EACD,CAAC,iBAAiB,EAAE,aAAa,EAAE,kBAAkB,EAAE,GAAG,4BAA4B,CAAC,CACxF,CAAC","file":"AreaChart.js","sourcesContent":["import type React from 'react';\nimport type { IAreaChartSpec, IVChartConstructor } from '@visactor/vchart';\nimport { VChart, registerAreaChart, registerLabel, registerTotalLabel } from '@visactor/vchart';\nimport type { BaseChartProps } from './BaseChart';\nimport { createChart } from './BaseChart';\nimport { cartesianComponentsRegisters } from './register';\n\nexport interface AreaChartProps\n extends Omit<BaseChartProps, 'spec' | 'container' | 'type' | 'data'>,\n Omit<IAreaChartSpec, 'type'> {}\n\nexport const AreaChart = createChart<React.PropsWithChildren<AreaChartProps> & { type: 'area' }>(\n 'AreaChart',\n {\n type: 'area',\n vchartConstrouctor: VChart as IVChartConstructor\n },\n [registerAreaChart, registerLabel, registerTotalLabel, ...cartesianComponentsRegisters]\n);\n"]}
@@ -1,6 +1,6 @@
1
- import React from 'react';
2
- import { ICircularProgressChartSpec } from '@visactor/vchart';
3
- import { BaseChartProps } from './BaseChart';
1
+ import type React from 'react';
2
+ import type { ICircularProgressChartSpec } from '@visactor/vchart';
3
+ import type { BaseChartProps } from './BaseChart';
4
4
  export interface CircularProgressChartProps extends Omit<BaseChartProps, 'spec' | 'container' | 'type' | 'data'>, Omit<ICircularProgressChartSpec, 'type'> {
5
5
  }
6
6
  export declare const CircularProgressChart: React.ForwardRefExoticComponent<CircularProgressChartProps & {
@@ -1,4 +1,4 @@
1
- import { VChart, registerCircularProgressChart, registerLabel } from "@visactor/vchart";
1
+ import { VChart, registerCircularProgressChart, registerLabel, registerIndicator } from "@visactor/vchart";
2
2
 
3
3
  import { createChart } from "./BaseChart";
4
4
 
@@ -7,5 +7,5 @@ import { polarComponentsRegisters } from "./register";
7
7
  export const CircularProgressChart = createChart("CircularProgressChart", {
8
8
  type: "circularProgress",
9
9
  vchartConstrouctor: VChart
10
- }, [ registerCircularProgressChart, registerLabel, ...polarComponentsRegisters ]);
10
+ }, [ registerCircularProgressChart, registerLabel, registerIndicator, ...polarComponentsRegisters ]);
11
11
  //# sourceMappingURL=CircularProgressChart.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/charts/CircularProgressChart.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,MAAM,EAAE,6BAA6B,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AACxF,OAAO,EAAkB,WAAW,EAAE,MAAM,aAAa,CAAC;AAC1D,OAAO,EAAE,wBAAwB,EAAE,MAAM,YAAY,CAAC;AAMtD,MAAM,CAAC,MAAM,qBAAqB,GAAG,WAAW,CAG9C,uBAAuB,EACvB;IACE,IAAI,EAAE,kBAAkB;IACxB,kBAAkB,EAAE,MAA4B;CACjD,EACD,CAAC,6BAA6B,EAAE,aAAa,EAAE,GAAG,wBAAwB,CAAC,CAC5E,CAAC","file":"CircularProgressChart.js","sourcesContent":["import React from 'react';\nimport { ICircularProgressChartSpec, IVChartConstructor } from '@visactor/vchart';\nimport { VChart, registerCircularProgressChart, registerLabel } from '@visactor/vchart';\nimport { BaseChartProps, createChart } from './BaseChart';\nimport { polarComponentsRegisters } from './register';\n\nexport interface CircularProgressChartProps\n extends Omit<BaseChartProps, 'spec' | 'container' | 'type' | 'data'>,\n Omit<ICircularProgressChartSpec, 'type'> {}\n\nexport const CircularProgressChart = createChart<\n React.PropsWithChildren<CircularProgressChartProps> & { type: 'circularProgress' }\n>(\n 'CircularProgressChart',\n {\n type: 'circularProgress',\n vchartConstrouctor: VChart as IVChartConstructor\n },\n [registerCircularProgressChart, registerLabel, ...polarComponentsRegisters]\n);\n"]}
1
+ {"version":3,"sources":["../src/charts/CircularProgressChart.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,MAAM,EAAE,6BAA6B,EAAE,aAAa,EAAE,iBAAiB,EAAE,MAAM,kBAAkB,CAAC;AAE3G,OAAO,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAC1C,OAAO,EAAE,wBAAwB,EAAE,MAAM,YAAY,CAAC;AAMtD,MAAM,CAAC,MAAM,qBAAqB,GAAG,WAAW,CAG9C,uBAAuB,EACvB;IACE,IAAI,EAAE,kBAAkB;IACxB,kBAAkB,EAAE,MAA4B;CACjD,EACD,CAAC,6BAA6B,EAAE,aAAa,EAAE,iBAAiB,EAAE,GAAG,wBAAwB,CAAC,CAC/F,CAAC","file":"CircularProgressChart.js","sourcesContent":["import type React from 'react';\nimport type { ICircularProgressChartSpec, IVChartConstructor } from '@visactor/vchart';\nimport { VChart, registerCircularProgressChart, registerLabel, registerIndicator } from '@visactor/vchart';\nimport type { BaseChartProps } from './BaseChart';\nimport { createChart } from './BaseChart';\nimport { polarComponentsRegisters } from './register';\n\nexport interface CircularProgressChartProps\n extends Omit<BaseChartProps, 'spec' | 'container' | 'type' | 'data'>,\n Omit<ICircularProgressChartSpec, 'type'> {}\n\nexport const CircularProgressChart = createChart<\n React.PropsWithChildren<CircularProgressChartProps> & { type: 'circularProgress' }\n>(\n 'CircularProgressChart',\n {\n type: 'circularProgress',\n vchartConstrouctor: VChart as IVChartConstructor\n },\n [registerCircularProgressChart, registerLabel, registerIndicator, ...polarComponentsRegisters]\n);\n"]}
@@ -1,6 +1,6 @@
1
- import React from 'react';
1
+ import type React from 'react';
2
2
  import type { IHeatmapChartSpec } from '@visactor/vchart';
3
- import { BaseChartProps } from './BaseChart';
3
+ import type { BaseChartProps } from './BaseChart';
4
4
  export interface HeatmapChartProps extends Omit<BaseChartProps, 'spec' | 'container' | 'type' | 'data'>, Omit<IHeatmapChartSpec, 'type'> {
5
5
  }
6
6
  export declare const HeatmapChart: React.ForwardRefExoticComponent<HeatmapChartProps & {
@@ -1,4 +1,4 @@
1
- import { VChart, registerHeatmapChart, registerCartesianBandAxis, registerCartesianCrossHair, registerLabel } from "@visactor/vchart";
1
+ import { VChart, registerHeatmapChart, registerLabel } from "@visactor/vchart";
2
2
 
3
3
  import { createChart } from "./BaseChart";
4
4
 
@@ -7,5 +7,5 @@ import { cartesianComponentsRegisters } from "./register";
7
7
  export const HeatmapChart = createChart("HeatmapChart", {
8
8
  type: "heatmap",
9
9
  vchartConstrouctor: VChart
10
- }, [ registerHeatmapChart, registerCartesianBandAxis, registerCartesianCrossHair, registerLabel, ...cartesianComponentsRegisters ]);
10
+ }, [ registerHeatmapChart, registerLabel, ...cartesianComponentsRegisters ]);
11
11
  //# sourceMappingURL=HeatmapChart.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/charts/HeatmapChart.tsx"],"names":[],"mappings":"AAEA,OAAO,EACL,MAAM,EACN,oBAAoB,EACpB,yBAAyB,EACzB,0BAA0B,EAC1B,aAAa,EACd,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EAAkB,WAAW,EAAE,MAAM,aAAa,CAAC;AAC1D,OAAO,EAAE,4BAA4B,EAAE,MAAM,YAAY,CAAC;AAQ1D,MAAM,CAAC,MAAM,YAAY,GAAG,WAAW,CACrC,cAAc,EACd;IACE,IAAI,EAAE,SAAS;IACf,kBAAkB,EAAE,MAA4B;CACjD,EACD;IACE,oBAAoB;IACpB,yBAAyB;IACzB,0BAA0B;IAC1B,aAAa;IACb,GAAG,4BAA4B;CAChC,CACF,CAAC","file":"HeatmapChart.js","sourcesContent":["import React from 'react';\nimport type { IHeatmapChartSpec, IVChartConstructor } from '@visactor/vchart';\nimport {\n VChart,\n registerHeatmapChart,\n registerCartesianBandAxis,\n registerCartesianCrossHair,\n registerLabel\n} from '@visactor/vchart';\nimport { BaseChartProps, createChart } from './BaseChart';\nimport { cartesianComponentsRegisters } from './register';\n\nexport interface HeatmapChartProps\n extends Omit<BaseChartProps, 'spec' | 'container' | 'type' | 'data'>,\n Omit<IHeatmapChartSpec, 'type'> {\n //\n}\n\nexport const HeatmapChart = createChart<React.PropsWithChildren<HeatmapChartProps> & { type: 'heatmap' }>(\n 'HeatmapChart',\n {\n type: 'heatmap',\n vchartConstrouctor: VChart as IVChartConstructor\n },\n [\n registerHeatmapChart,\n registerCartesianBandAxis,\n registerCartesianCrossHair,\n registerLabel,\n ...cartesianComponentsRegisters\n ]\n);\n"]}
1
+ {"version":3,"sources":["../src/charts/HeatmapChart.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,MAAM,EAAE,oBAAoB,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAE/E,OAAO,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAC1C,OAAO,EAAE,4BAA4B,EAAE,MAAM,YAAY,CAAC;AAQ1D,MAAM,CAAC,MAAM,YAAY,GAAG,WAAW,CACrC,cAAc,EACd;IACE,IAAI,EAAE,SAAS;IACf,kBAAkB,EAAE,MAA4B;CACjD,EACD,CAAC,oBAAoB,EAAE,aAAa,EAAE,GAAG,4BAA4B,CAAC,CACvE,CAAC","file":"HeatmapChart.js","sourcesContent":["import type React from 'react';\nimport type { IHeatmapChartSpec, IVChartConstructor } from '@visactor/vchart';\nimport { VChart, registerHeatmapChart, registerLabel } from '@visactor/vchart';\nimport type { BaseChartProps } from './BaseChart';\nimport { createChart } from './BaseChart';\nimport { cartesianComponentsRegisters } from './register';\n\nexport interface HeatmapChartProps\n extends Omit<BaseChartProps, 'spec' | 'container' | 'type' | 'data'>,\n Omit<IHeatmapChartSpec, 'type'> {\n //\n}\n\nexport const HeatmapChart = createChart<React.PropsWithChildren<HeatmapChartProps> & { type: 'heatmap' }>(\n 'HeatmapChart',\n {\n type: 'heatmap',\n vchartConstrouctor: VChart as IVChartConstructor\n },\n [registerHeatmapChart, registerLabel, ...cartesianComponentsRegisters]\n);\n"]}
@@ -1,6 +1,6 @@
1
- import React from 'react';
1
+ import type React from 'react';
2
2
  import type { ILineChartSpec } from '@visactor/vchart';
3
- import { BaseChartProps } from './BaseChart';
3
+ import type { BaseChartProps } from './BaseChart';
4
4
  export interface LineChartProps extends Omit<BaseChartProps, 'spec' | 'container' | 'type' | 'data'>, Omit<ILineChartSpec, 'type'> {
5
5
  }
6
6
  export declare const LineChart: React.ForwardRefExoticComponent<LineChartProps & {
@@ -1,4 +1,4 @@
1
- import { VChart, registerLineChart, registerLabel, registerTotalLabel } from "@visactor/vchart";
1
+ import { VChart, registerLineChart, registerLabel } from "@visactor/vchart";
2
2
 
3
3
  import { createChart } from "./BaseChart";
4
4
 
@@ -7,5 +7,5 @@ import { cartesianComponentsRegisters } from "./register";
7
7
  export const LineChart = createChart("LineChart", {
8
8
  type: "line",
9
9
  vchartConstrouctor: VChart
10
- }, [ registerLineChart, registerLabel, registerTotalLabel, ...cartesianComponentsRegisters ]);
10
+ }, [ registerLineChart, registerLabel, ...cartesianComponentsRegisters ]);
11
11
  //# sourceMappingURL=LineChart.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/charts/LineChart.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,MAAM,EAAE,iBAAiB,EAAE,aAAa,EAAE,kBAAkB,EAAE,MAAM,kBAAkB,CAAC;AAChG,OAAO,EAAkB,WAAW,EAAE,MAAM,aAAa,CAAC;AAC1D,OAAO,EAAE,4BAA4B,EAAE,MAAM,YAAY,CAAC;AAM1D,MAAM,CAAC,MAAM,SAAS,GAAG,WAAW,CAClC,WAAW,EACX;IACE,IAAI,EAAE,MAAM;IACZ,kBAAkB,EAAE,MAA4B;CACjD,EACD,CAAC,iBAAiB,EAAE,aAAa,EAAE,kBAAkB,EAAE,GAAG,4BAA4B,CAAC,CACxF,CAAC","file":"LineChart.js","sourcesContent":["import React from 'react';\nimport type { ILineChartSpec, IVChartConstructor } from '@visactor/vchart';\nimport { VChart, registerLineChart, registerLabel, registerTotalLabel } from '@visactor/vchart';\nimport { BaseChartProps, createChart } from './BaseChart';\nimport { cartesianComponentsRegisters } from './register';\n\nexport interface LineChartProps\n extends Omit<BaseChartProps, 'spec' | 'container' | 'type' | 'data'>,\n Omit<ILineChartSpec, 'type'> {}\n\nexport const LineChart = createChart<React.PropsWithChildren<LineChartProps> & { type: 'line' }>(\n 'LineChart',\n {\n type: 'line',\n vchartConstrouctor: VChart as IVChartConstructor\n },\n [registerLineChart, registerLabel, registerTotalLabel, ...cartesianComponentsRegisters]\n);\n"]}
1
+ {"version":3,"sources":["../src/charts/LineChart.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,MAAM,EAAE,iBAAiB,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAE5E,OAAO,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAC1C,OAAO,EAAE,4BAA4B,EAAE,MAAM,YAAY,CAAC;AAM1D,MAAM,CAAC,MAAM,SAAS,GAAG,WAAW,CAClC,WAAW,EACX;IACE,IAAI,EAAE,MAAM;IACZ,kBAAkB,EAAE,MAA4B;CACjD,EACD,CAAC,iBAAiB,EAAE,aAAa,EAAE,GAAG,4BAA4B,CAAC,CACpE,CAAC","file":"LineChart.js","sourcesContent":["import type React from 'react';\nimport type { ILineChartSpec, IVChartConstructor } from '@visactor/vchart';\nimport { VChart, registerLineChart, registerLabel } from '@visactor/vchart';\nimport type { BaseChartProps } from './BaseChart';\nimport { createChart } from './BaseChart';\nimport { cartesianComponentsRegisters } from './register';\n\nexport interface LineChartProps\n extends Omit<BaseChartProps, 'spec' | 'container' | 'type' | 'data'>,\n Omit<ILineChartSpec, 'type'> {}\n\nexport const LineChart = createChart<React.PropsWithChildren<LineChartProps> & { type: 'line' }>(\n 'LineChart',\n {\n type: 'line',\n vchartConstrouctor: VChart as IVChartConstructor\n },\n [registerLineChart, registerLabel, ...cartesianComponentsRegisters]\n);\n"]}
@@ -1,6 +1,6 @@
1
- import React from 'react';
1
+ import type React from 'react';
2
2
  import type { ILiquidChartSpec } from '@visactor/vchart';
3
- import { BaseChartProps } from './BaseChart';
3
+ import type { BaseChartProps } from './BaseChart';
4
4
  export interface LiquidChartProps extends Omit<BaseChartProps, 'spec' | 'container' | 'type' | 'data' | 'data'>, Omit<ILiquidChartSpec, 'type'> {
5
5
  }
6
6
  export declare const LiquidChart: React.ForwardRefExoticComponent<LiquidChartProps & {
@@ -1,4 +1,4 @@
1
- import { VChart, registerLiquidChart } from "@visactor/vchart";
1
+ import { VChart, registerLiquidChart, registerIndicator } from "@visactor/vchart";
2
2
 
3
3
  import { createChart } from "./BaseChart";
4
4
 
@@ -7,5 +7,5 @@ import { simpleComponentsRegisters } from "./register";
7
7
  export const LiquidChart = createChart("LiquidChart", {
8
8
  type: "liquid",
9
9
  vchartConstrouctor: VChart
10
- }, [ registerLiquidChart, ...simpleComponentsRegisters ]);
10
+ }, [ registerLiquidChart, registerIndicator, ...simpleComponentsRegisters ]);
11
11
  //# sourceMappingURL=LiquidChart.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/charts/LiquidChart.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,MAAM,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAC;AAC/D,OAAO,EAAkB,WAAW,EAAE,MAAM,aAAa,CAAC;AAC1D,OAAO,EAAE,yBAAyB,EAAE,MAAM,YAAY,CAAC;AAMvD,MAAM,CAAC,MAAM,WAAW,GAAG,WAAW,CACpC,aAAa,EACb;IACE,IAAI,EAAE,QAAQ;IACd,kBAAkB,EAAE,MAA4B;CACjD,EACD,CAAC,mBAAmB,EAAE,GAAG,yBAAyB,CAAC,CACpD,CAAC","file":"LiquidChart.js","sourcesContent":["import React from 'react';\nimport type { ILiquidChartSpec, IVChartConstructor } from '@visactor/vchart';\nimport { VChart, registerLiquidChart } from '@visactor/vchart';\nimport { BaseChartProps, createChart } from './BaseChart';\nimport { simpleComponentsRegisters } from './register';\n\nexport interface LiquidChartProps\n extends Omit<BaseChartProps, 'spec' | 'container' | 'type' | 'data' | 'data'>,\n Omit<ILiquidChartSpec, 'type'> {}\n\nexport const LiquidChart = createChart<React.PropsWithChildren<LiquidChartProps> & { type: 'liquid' }>(\n 'LiquidChart',\n {\n type: 'liquid',\n vchartConstrouctor: VChart as IVChartConstructor\n },\n [registerLiquidChart, ...simpleComponentsRegisters]\n);\n"]}
1
+ {"version":3,"sources":["../src/charts/LiquidChart.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,MAAM,EAAE,mBAAmB,EAAE,iBAAiB,EAAE,MAAM,kBAAkB,CAAC;AAElF,OAAO,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAC1C,OAAO,EAAE,yBAAyB,EAAE,MAAM,YAAY,CAAC;AAMvD,MAAM,CAAC,MAAM,WAAW,GAAG,WAAW,CACpC,aAAa,EACb;IACE,IAAI,EAAE,QAAQ;IACd,kBAAkB,EAAE,MAA4B;CACjD,EACD,CAAC,mBAAmB,EAAE,iBAAiB,EAAE,GAAG,yBAAyB,CAAC,CACvE,CAAC","file":"LiquidChart.js","sourcesContent":["import type React from 'react';\nimport type { ILiquidChartSpec, IVChartConstructor } from '@visactor/vchart';\nimport { VChart, registerLiquidChart, registerIndicator } from '@visactor/vchart';\nimport type { BaseChartProps } from './BaseChart';\nimport { createChart } from './BaseChart';\nimport { simpleComponentsRegisters } from './register';\n\nexport interface LiquidChartProps\n extends Omit<BaseChartProps, 'spec' | 'container' | 'type' | 'data' | 'data'>,\n Omit<ILiquidChartSpec, 'type'> {}\n\nexport const LiquidChart = createChart<React.PropsWithChildren<LiquidChartProps> & { type: 'liquid' }>(\n 'LiquidChart',\n {\n type: 'liquid',\n vchartConstrouctor: VChart as IVChartConstructor\n },\n [registerLiquidChart, registerIndicator, ...simpleComponentsRegisters]\n);\n"]}
@@ -1,6 +1,6 @@
1
- import React from 'react';
1
+ import type React from 'react';
2
2
  import type { IPie3dChartSpec } from '@visactor/vchart';
3
- import { BaseChartProps } from './BaseChart';
3
+ import type { BaseChartProps } from './BaseChart';
4
4
  export interface Pie3dChartProps extends Omit<BaseChartProps, 'spec' | 'container' | 'type' | 'data'>, Omit<IPie3dChartSpec, 'type'> {
5
5
  }
6
6
  export declare const Pie3dChart: React.ForwardRefExoticComponent<Pie3dChartProps & {
@@ -1,4 +1,4 @@
1
- import { VChart, registerPie3dChart, registerLabel } from "@visactor/vchart";
1
+ import { VChart, registerPie3dChart, registerIndicator, registerLabel } from "@visactor/vchart";
2
2
 
3
3
  import { createChart } from "./BaseChart";
4
4
 
@@ -7,5 +7,5 @@ import { simpleComponentsRegisters } from "./register";
7
7
  export const Pie3dChart = createChart("Pie3dChart", {
8
8
  type: "pie3d",
9
9
  vchartConstrouctor: VChart
10
- }, [ registerPie3dChart, registerLabel, ...simpleComponentsRegisters ]);
10
+ }, [ registerPie3dChart, registerLabel, registerIndicator, ...simpleComponentsRegisters ]);
11
11
  //# sourceMappingURL=Pie3dChart.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/charts/Pie3dChart.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,MAAM,EAAE,kBAAkB,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAC7E,OAAO,EAAkB,WAAW,EAAE,MAAM,aAAa,CAAC;AAC1D,OAAO,EAAE,yBAAyB,EAAE,MAAM,YAAY,CAAC;AAMvD,MAAM,CAAC,MAAM,UAAU,GAAG,WAAW,CACnC,YAAY,EACZ;IACE,IAAI,EAAE,OAAO;IACb,kBAAkB,EAAE,MAA4B;CACjD,EACD,CAAC,kBAAkB,EAAE,aAAa,EAAE,GAAG,yBAAyB,CAAC,CAClE,CAAC","file":"Pie3dChart.js","sourcesContent":["import React from 'react';\nimport type { IPie3dChartSpec, IVChartConstructor } from '@visactor/vchart';\nimport { VChart, registerPie3dChart, registerLabel } from '@visactor/vchart';\nimport { BaseChartProps, createChart } from './BaseChart';\nimport { simpleComponentsRegisters } from './register';\n\nexport interface Pie3dChartProps\n extends Omit<BaseChartProps, 'spec' | 'container' | 'type' | 'data'>,\n Omit<IPie3dChartSpec, 'type'> {}\n\nexport const Pie3dChart = createChart<React.PropsWithChildren<Pie3dChartProps> & { type: 'pie3d' }>(\n 'Pie3dChart',\n {\n type: 'pie3d',\n vchartConstrouctor: VChart as IVChartConstructor\n },\n [registerPie3dChart, registerLabel, ...simpleComponentsRegisters]\n);\n"]}
1
+ {"version":3,"sources":["../src/charts/Pie3dChart.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,MAAM,EAAE,kBAAkB,EAAE,iBAAiB,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEhG,OAAO,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAC1C,OAAO,EAAE,yBAAyB,EAAE,MAAM,YAAY,CAAC;AAMvD,MAAM,CAAC,MAAM,UAAU,GAAG,WAAW,CACnC,YAAY,EACZ;IACE,IAAI,EAAE,OAAO;IACb,kBAAkB,EAAE,MAA4B;CACjD,EACD,CAAC,kBAAkB,EAAE,aAAa,EAAE,iBAAiB,EAAE,GAAG,yBAAyB,CAAC,CACrF,CAAC","file":"Pie3dChart.js","sourcesContent":["import type React from 'react';\nimport type { IPie3dChartSpec, IVChartConstructor } from '@visactor/vchart';\nimport { VChart, registerPie3dChart, registerIndicator, registerLabel } from '@visactor/vchart';\nimport type { BaseChartProps } from './BaseChart';\nimport { createChart } from './BaseChart';\nimport { simpleComponentsRegisters } from './register';\n\nexport interface Pie3dChartProps\n extends Omit<BaseChartProps, 'spec' | 'container' | 'type' | 'data'>,\n Omit<IPie3dChartSpec, 'type'> {}\n\nexport const Pie3dChart = createChart<React.PropsWithChildren<Pie3dChartProps> & { type: 'pie3d' }>(\n 'Pie3dChart',\n {\n type: 'pie3d',\n vchartConstrouctor: VChart as IVChartConstructor\n },\n [registerPie3dChart, registerLabel, registerIndicator, ...simpleComponentsRegisters]\n);\n"]}
@@ -1,6 +1,6 @@
1
- import React from 'react';
1
+ import type React from 'react';
2
2
  import type { IPieChartSpec } from '@visactor/vchart';
3
- import { BaseChartProps } from './BaseChart';
3
+ import type { BaseChartProps } from './BaseChart';
4
4
  export interface PieChartProps extends Omit<BaseChartProps, 'spec' | 'container' | 'type' | 'data'>, Omit<IPieChartSpec, 'type'> {
5
5
  }
6
6
  export declare const PieChart: React.ForwardRefExoticComponent<PieChartProps & {
@@ -1,4 +1,4 @@
1
- import { VChart, registerPieChart, registerLabel } from "@visactor/vchart";
1
+ import { VChart, registerPieChart, registerLabel, registerIndicator } from "@visactor/vchart";
2
2
 
3
3
  import { createChart } from "./BaseChart";
4
4
 
@@ -7,5 +7,5 @@ import { simpleComponentsRegisters } from "./register";
7
7
  export const PieChart = createChart("PieChart", {
8
8
  type: "pie",
9
9
  vchartConstrouctor: VChart
10
- }, [ registerPieChart, registerLabel, ...simpleComponentsRegisters ]);
10
+ }, [ registerPieChart, registerLabel, registerIndicator, ...simpleComponentsRegisters ]);
11
11
  //# sourceMappingURL=PieChart.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/charts/PieChart.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,MAAM,EAAE,gBAAgB,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAC3E,OAAO,EAAkB,WAAW,EAAE,MAAM,aAAa,CAAC;AAC1D,OAAO,EAAE,yBAAyB,EAAE,MAAM,YAAY,CAAC;AAMvD,MAAM,CAAC,MAAM,QAAQ,GAAG,WAAW,CACjC,UAAU,EACV;IACE,IAAI,EAAE,KAAK;IACX,kBAAkB,EAAE,MAA4B;CACjD,EACD,CAAC,gBAAgB,EAAE,aAAa,EAAE,GAAG,yBAAyB,CAAC,CAChE,CAAC","file":"PieChart.js","sourcesContent":["import React from 'react';\nimport type { IPieChartSpec, IVChartConstructor } from '@visactor/vchart';\nimport { VChart, registerPieChart, registerLabel } from '@visactor/vchart';\nimport { BaseChartProps, createChart } from './BaseChart';\nimport { simpleComponentsRegisters } from './register';\n\nexport interface PieChartProps\n extends Omit<BaseChartProps, 'spec' | 'container' | 'type' | 'data'>,\n Omit<IPieChartSpec, 'type'> {}\n\nexport const PieChart = createChart<React.PropsWithChildren<PieChartProps> & { type: 'pie' }>(\n 'PieChart',\n {\n type: 'pie',\n vchartConstrouctor: VChart as IVChartConstructor\n },\n [registerPieChart, registerLabel, ...simpleComponentsRegisters]\n);\n"]}
1
+ {"version":3,"sources":["../src/charts/PieChart.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,MAAM,EAAE,gBAAgB,EAAE,aAAa,EAAE,iBAAiB,EAAE,MAAM,kBAAkB,CAAC;AAE9F,OAAO,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAC1C,OAAO,EAAE,yBAAyB,EAAE,MAAM,YAAY,CAAC;AAMvD,MAAM,CAAC,MAAM,QAAQ,GAAG,WAAW,CACjC,UAAU,EACV;IACE,IAAI,EAAE,KAAK;IACX,kBAAkB,EAAE,MAA4B;CACjD,EACD,CAAC,gBAAgB,EAAE,aAAa,EAAE,iBAAiB,EAAE,GAAG,yBAAyB,CAAC,CACnF,CAAC","file":"PieChart.js","sourcesContent":["import type React from 'react';\nimport type { IPieChartSpec, IVChartConstructor } from '@visactor/vchart';\nimport { VChart, registerPieChart, registerLabel, registerIndicator } from '@visactor/vchart';\nimport type { BaseChartProps } from './BaseChart';\nimport { createChart } from './BaseChart';\nimport { simpleComponentsRegisters } from './register';\n\nexport interface PieChartProps\n extends Omit<BaseChartProps, 'spec' | 'container' | 'type' | 'data'>,\n Omit<IPieChartSpec, 'type'> {}\n\nexport const PieChart = createChart<React.PropsWithChildren<PieChartProps> & { type: 'pie' }>(\n 'PieChart',\n {\n type: 'pie',\n vchartConstrouctor: VChart as IVChartConstructor\n },\n [registerPieChart, registerLabel, registerIndicator, ...simpleComponentsRegisters]\n);\n"]}
@@ -0,0 +1,10 @@
1
+ import type React from 'react';
2
+ import type { IVennChartSpec } from '@visactor/vchart';
3
+ import type { BaseChartProps } from './BaseChart';
4
+ export interface VennChartProps extends Omit<BaseChartProps, 'spec' | 'container' | 'type' | 'data'>, Omit<IVennChartSpec, 'type'> {
5
+ }
6
+ export declare const VennChart: React.ForwardRefExoticComponent<VennChartProps & {
7
+ children?: React.ReactNode;
8
+ } & {
9
+ type: 'venn';
10
+ } & import("../containers/withContainer").ContainerProps & React.RefAttributes<any>>;
@@ -0,0 +1,10 @@
1
+ import { VChart, registerVennChart } from "@visactor/vchart";
2
+
3
+ import { createChart } from "./BaseChart";
4
+
5
+ import { simpleComponentsRegisters } from "./register";
6
+
7
+ export const VennChart = createChart("VennChart", {
8
+ type: "venn",
9
+ vchartConstrouctor: VChart
10
+ }, [ registerVennChart, ...simpleComponentsRegisters ]);
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/charts/VennChart.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,MAAM,EAAE,iBAAiB,EAAE,MAAM,kBAAkB,CAAC;AAE7D,OAAO,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAC1C,OAAO,EAAE,yBAAyB,EAAE,MAAM,YAAY,CAAC;AAMvD,MAAM,CAAC,MAAM,SAAS,GAAG,WAAW,CAClC,WAAW,EACX;IACE,IAAI,EAAE,MAAM;IACZ,kBAAkB,EAAE,MAA4B;CACjD,EACD,CAAC,iBAAiB,EAAE,GAAG,yBAAyB,CAAC,CAClD,CAAC","file":"VennChart.js","sourcesContent":["import type React from 'react';\nimport type { IVennChartSpec, IVChartConstructor } from '@visactor/vchart';\nimport { VChart, registerVennChart } from '@visactor/vchart';\nimport type { BaseChartProps } from './BaseChart';\nimport { createChart } from './BaseChart';\nimport { simpleComponentsRegisters } from './register';\n\nexport interface VennChartProps\n extends Omit<BaseChartProps, 'spec' | 'container' | 'type' | 'data'>,\n Omit<IVennChartSpec, 'type'> {}\n\nexport const VennChart = createChart<React.PropsWithChildren<VennChartProps> & { type: 'venn' }>(\n 'VennChart',\n {\n type: 'venn',\n vchartConstrouctor: VChart as IVChartConstructor\n },\n [registerVennChart, ...simpleComponentsRegisters]\n);\n"]}
@@ -7,4 +7,5 @@ import { cartesianComponentsRegisters } from "./register";
7
7
  export const WaterfallChart = createChart("WaterfallChart", {
8
8
  type: "waterfall",
9
9
  vchartConstrouctor: VChart
10
- }, [ registerWaterfallChart, registerLabel, registerTotalLabel, ...cartesianComponentsRegisters ]);
10
+ }, [ registerWaterfallChart, registerLabel, registerTotalLabel, ...cartesianComponentsRegisters ]);
11
+ //# sourceMappingURL=WaterfallChart.js.map
@@ -30,5 +30,6 @@ export * from './TreemapChart';
30
30
  export * from './WordCloudChart';
31
31
  export * from './WordCloud3dChart';
32
32
  export * from './WordCloudChart';
33
+ export * from './VennChart';
33
34
  export type { ChartOptions } from './BaseChart';
34
35
  export type { IData, IChartSpec } from '@visactor/vchart';
@@ -61,4 +61,6 @@ export * from "./WordCloudChart";
61
61
  export * from "./WordCloud3dChart";
62
62
 
63
63
  export * from "./WordCloudChart";
64
+
65
+ export * from "./VennChart";
64
66
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/charts/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC;AAC7B,cAAc,gBAAgB,CAAC;AAE/B,cAAc,sBAAsB,CAAC;AACrC,cAAc,yBAAyB,CAAC;AACxC,cAAc,eAAe,CAAC;AAC9B,cAAc,oBAAoB,CAAC;AAEnC,cAAc,eAAe,CAAC;AAC9B,cAAc,iBAAiB,CAAC;AAChC,cAAc,cAAc,CAAC;AAC7B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC;AAEjC,cAAc,uBAAuB,CAAC;AACtC,cAAc,aAAa,CAAC;AAC5B,cAAc,eAAe,CAAC;AAE9B,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC;AAC7B,cAAc,oBAAoB,CAAC;AACnC,cAAc,sBAAsB,CAAC;AACrC,cAAc,aAAa,CAAC;AAE5B,cAAc,eAAe,CAAC;AAC9B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC;AAEhC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC","file":"index.js","sourcesContent":["export * from './AreaChart';\nexport * from './BarChart';\nexport * from './Bar3dChart';\nexport * from './BoxPlotChart';\n\nexport * from './CirclePackingChart';\nexport * from './CircularProgressChart';\nexport * from './CommonChart';\nexport * from './CorrelationChart';\n\nexport * from './FunnelChart';\nexport * from './Funnel3dChart';\nexport * from './GaugeChart';\nexport * from './HeatmapChart';\nexport * from './Histogram3dChart';\nexport * from './HistogramChart';\n\nexport * from './LinearProgressChart';\nexport * from './LineChart';\nexport * from './LiquidChart';\n\nexport * from './MapChart';\nexport * from './PieChart';\nexport * from './Pie3dChart';\nexport * from './RadarChart';\nexport * from './RangeColumnChart';\nexport * from './RangeColumn3dChart';\nexport * from './RoseChart';\n\nexport * from './SankeyChart';\nexport * from './ScatterChart';\nexport * from './SequenceChart';\nexport * from './SunburstChart';\n\nexport * from './TreemapChart';\nexport * from './WordCloudChart';\nexport * from './WordCloud3dChart';\nexport * from './WordCloudChart';\n\nexport type { ChartOptions } from './BaseChart';\nexport type { IData, IChartSpec } from '@visactor/vchart';\n"]}
1
+ {"version":3,"sources":["../src/charts/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC;AAC7B,cAAc,gBAAgB,CAAC;AAE/B,cAAc,sBAAsB,CAAC;AACrC,cAAc,yBAAyB,CAAC;AACxC,cAAc,eAAe,CAAC;AAC9B,cAAc,oBAAoB,CAAC;AAEnC,cAAc,eAAe,CAAC;AAC9B,cAAc,iBAAiB,CAAC;AAChC,cAAc,cAAc,CAAC;AAC7B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC;AAEjC,cAAc,uBAAuB,CAAC;AACtC,cAAc,aAAa,CAAC;AAC5B,cAAc,eAAe,CAAC;AAE9B,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC;AAC7B,cAAc,oBAAoB,CAAC;AACnC,cAAc,sBAAsB,CAAC;AACrC,cAAc,aAAa,CAAC;AAE5B,cAAc,eAAe,CAAC;AAC9B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC;AAEhC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC;AACjC,cAAc,aAAa,CAAC","file":"index.js","sourcesContent":["export * from './AreaChart';\nexport * from './BarChart';\nexport * from './Bar3dChart';\nexport * from './BoxPlotChart';\n\nexport * from './CirclePackingChart';\nexport * from './CircularProgressChart';\nexport * from './CommonChart';\nexport * from './CorrelationChart';\n\nexport * from './FunnelChart';\nexport * from './Funnel3dChart';\nexport * from './GaugeChart';\nexport * from './HeatmapChart';\nexport * from './Histogram3dChart';\nexport * from './HistogramChart';\n\nexport * from './LinearProgressChart';\nexport * from './LineChart';\nexport * from './LiquidChart';\n\nexport * from './MapChart';\nexport * from './PieChart';\nexport * from './Pie3dChart';\nexport * from './RadarChart';\nexport * from './RangeColumnChart';\nexport * from './RangeColumn3dChart';\nexport * from './RoseChart';\n\nexport * from './SankeyChart';\nexport * from './ScatterChart';\nexport * from './SequenceChart';\nexport * from './SunburstChart';\n\nexport * from './TreemapChart';\nexport * from './WordCloudChart';\nexport * from './WordCloud3dChart';\nexport * from './WordCloudChart';\nexport * from './VennChart';\n\nexport type { ChartOptions } from './BaseChart';\nexport type { IData, IChartSpec } from '@visactor/vchart';\n"]}
@@ -4,5 +4,4 @@ import { createComponent } from "./BaseComponent";
4
4
 
5
5
  import { registerPlayer } from "@visactor/vchart";
6
6
 
7
- export const Player = createComponent("Player", "player", PLAYER_CUSTOMIZED_EVENTS, !0, [ registerPlayer ]);
8
- //# sourceMappingURL=Player.js.map
7
+ export const Player = createComponent("Player", "player", PLAYER_CUSTOMIZED_EVENTS, !0, [ registerPlayer ]);
@@ -1,3 +1,4 @@
1
1
  import { createComponent } from "./BaseComponent";
2
2
 
3
- export const Region = createComponent("Region", "region");
3
+ export const Region = createComponent("Region", "region");
4
+ //# sourceMappingURL=Region.js.map
package/esm/index.d.ts CHANGED
@@ -4,5 +4,5 @@ export * from './components';
4
4
  export * from './VChart';
5
5
  export * from './VChartSimple';
6
6
  export { VChart as VChartCore } from '@visactor/vchart';
7
- export declare const version = "1.12.0-alpha.6";
7
+ export declare const version = "1.12.0-alpha.8";
8
8
  export type { IAreaChartSpec, IBarChartSpec, IBar3dChartSpec, IBoxPlotChartSpec, ICirclePackingChartSpec, ICommonChartSpec, IFunnelChartSpec, IFunnel3dChartSpec, IGaugeChartSpec, IHeatmapChartSpec, IHistogramChartSpec, IHistogram3dChartSpec, ILineChartSpec, IMapChartSpec, IPieChartSpec, IPie3dChartSpec, ICircularProgressChartSpec, ILinearProgressChartSpec, IRadarChartSpec, IRangeColumnChartSpec, IRangeColumn3dChartSpec, IRangeAreaChartSpec, IRoseChartSpec, IScatterChartSpec, ISankeyChartSpec, ISequenceChartSpec, ISunburstChartSpec, ITreemapChartSpec, IWaterfallChartSpec, ICorrelationChartSpec, ILiquidChartSpec, IWordCloud3dChartSpec, IWordCloudChartSpec, IPolarChartSpec, ICartesianChartSpec, ITheme, IInitOption, ISpec, IVChart } from '@visactor/vchart';
package/esm/index.js CHANGED
@@ -10,5 +10,5 @@ export * from "./VChartSimple";
10
10
 
11
11
  export { VChart as VChartCore } from "@visactor/vchart";
12
12
 
13
- export const version = "1.12.0-alpha.6";
13
+ export const version = "1.12.0-alpha.8";
14
14
  //# sourceMappingURL=index.js.map
package/esm/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC;AAC7B,cAAc,UAAU,CAAC;AACzB,cAAc,gBAAgB,CAAC;AAC/B,OAAO,EAAE,MAAM,IAAI,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAGxD,MAAM,CAAC,MAAM,OAAO,GAAG,gBAAgB,CAAC","file":"index.js","sourcesContent":["export * from './charts';\nexport * from './series';\nexport * from './components';\nexport * from './VChart';\nexport * from './VChartSimple';\nexport { VChart as VChartCore } from '@visactor/vchart';\n\n// export the version, since @1.8.3\nexport const version = \"1.12.0-alpha.6\";\n\nexport type {\n IAreaChartSpec,\n IBarChartSpec,\n IBar3dChartSpec,\n IBoxPlotChartSpec,\n ICirclePackingChartSpec,\n ICommonChartSpec,\n IFunnelChartSpec,\n IFunnel3dChartSpec,\n IGaugeChartSpec,\n IHeatmapChartSpec,\n IHistogramChartSpec,\n IHistogram3dChartSpec,\n ILineChartSpec,\n IMapChartSpec,\n IPieChartSpec,\n IPie3dChartSpec,\n ICircularProgressChartSpec,\n ILinearProgressChartSpec,\n IRadarChartSpec,\n IRangeColumnChartSpec,\n IRangeColumn3dChartSpec,\n IRangeAreaChartSpec,\n IRoseChartSpec,\n IScatterChartSpec,\n ISankeyChartSpec,\n ISequenceChartSpec,\n ISunburstChartSpec,\n ITreemapChartSpec,\n IWaterfallChartSpec,\n ICorrelationChartSpec,\n ILiquidChartSpec,\n IWordCloud3dChartSpec,\n IWordCloudChartSpec,\n IPolarChartSpec,\n ICartesianChartSpec,\n ITheme,\n IInitOption,\n ISpec,\n IVChart\n} from '@visactor/vchart';\n"]}
1
+ {"version":3,"sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC;AAC7B,cAAc,UAAU,CAAC;AACzB,cAAc,gBAAgB,CAAC;AAC/B,OAAO,EAAE,MAAM,IAAI,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAGxD,MAAM,CAAC,MAAM,OAAO,GAAG,gBAAgB,CAAC","file":"index.js","sourcesContent":["export * from './charts';\nexport * from './series';\nexport * from './components';\nexport * from './VChart';\nexport * from './VChartSimple';\nexport { VChart as VChartCore } from '@visactor/vchart';\n\n// export the version, since @1.8.3\nexport const version = \"1.12.0-alpha.8\";\n\nexport type {\n IAreaChartSpec,\n IBarChartSpec,\n IBar3dChartSpec,\n IBoxPlotChartSpec,\n ICirclePackingChartSpec,\n ICommonChartSpec,\n IFunnelChartSpec,\n IFunnel3dChartSpec,\n IGaugeChartSpec,\n IHeatmapChartSpec,\n IHistogramChartSpec,\n IHistogram3dChartSpec,\n ILineChartSpec,\n IMapChartSpec,\n IPieChartSpec,\n IPie3dChartSpec,\n ICircularProgressChartSpec,\n ILinearProgressChartSpec,\n IRadarChartSpec,\n IRangeColumnChartSpec,\n IRangeColumn3dChartSpec,\n IRangeAreaChartSpec,\n IRoseChartSpec,\n IScatterChartSpec,\n ISankeyChartSpec,\n ISequenceChartSpec,\n ISunburstChartSpec,\n ITreemapChartSpec,\n IWaterfallChartSpec,\n ICorrelationChartSpec,\n ILiquidChartSpec,\n IWordCloud3dChartSpec,\n IWordCloudChartSpec,\n IPolarChartSpec,\n ICartesianChartSpec,\n ITheme,\n IInitOption,\n ISpec,\n IVChart\n} from '@visactor/vchart';\n"]}
@@ -3,4 +3,4 @@ import { createSeries } from "./BaseSeries";
3
3
  import { registerAreaSeries } from "@visactor/vchart";
4
4
 
5
5
  export const Area = createSeries("Area", [ "area" ], "area", [ registerAreaSeries ]);
6
- //# sourceMappingURL=Area.js.map
6
+ //# sourceMappingURL=Area.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visactor/react-vchart",
3
- "version": "1.12.0-alpha.6",
3
+ "version": "1.12.0-alpha.8",
4
4
  "sideEffects": false,
5
5
  "description": "The react version of VChart 4.x",
6
6
  "keywords": [
@@ -23,7 +23,7 @@
23
23
  "dist"
24
24
  ],
25
25
  "dependencies": {
26
- "@visactor/vchart": "1.12.0-alpha.6",
26
+ "@visactor/vchart": "1.12.0-alpha.8",
27
27
  "@visactor/vutils": "~0.18.10",
28
28
  "@visactor/vrender-core": "0.19.18",
29
29
  "@visactor/vrender-kits": "0.19.18",
@@ -55,8 +55,8 @@
55
55
  "@vitejs/plugin-react": "3.1.0",
56
56
  "vite": "3.2.6",
57
57
  "@internal/bundler": "0.0.1",
58
- "@internal/eslint-config": "0.0.1",
59
- "@internal/ts-config": "0.0.1"
58
+ "@internal/ts-config": "0.0.1",
59
+ "@internal/eslint-config": "0.0.1"
60
60
  },
61
61
  "peerDependencies": {
62
62
  "react": ">=16.0.0",