@visactor/react-vchart 1.13.1 → 1.13.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/cjs/charts/MosaicChart.d.ts +10 -0
- package/cjs/charts/MosaicChart.js +13 -0
- package/cjs/charts/MosaicChart.js.map +1 -0
- package/cjs/charts/PictogramChart.d.ts +10 -0
- package/cjs/charts/PictogramChart.js +13 -0
- package/cjs/charts/PictogramChart.js.map +1 -0
- package/cjs/charts/RangeAreaChart.d.ts +10 -0
- package/cjs/charts/RangeAreaChart.js +13 -0
- package/cjs/charts/RangeAreaChart.js.map +1 -0
- package/cjs/charts/SequenceChart.js +1 -2
- package/cjs/charts/VennChart.js +2 -1
- package/cjs/charts/index.d.ts +3 -0
- package/cjs/charts/index.js +8 -7
- package/cjs/charts/index.js.map +1 -1
- package/cjs/components/MarkArea.js +1 -2
- package/cjs/components/Player.js +2 -1
- package/cjs/context/chart.js +1 -1
- package/cjs/context/stage.js +1 -1
- package/cjs/context/view.js +1 -1
- package/cjs/index.d.ts +1 -1
- package/cjs/index.js +1 -1
- package/cjs/index.js.map +1 -1
- package/cjs/series/Gauge.d.ts +1 -1
- package/cjs/series/Gauge.js +1 -1
- package/cjs/series/Gauge.js.map +1 -1
- package/cjs/series/GaugePointer.d.ts +7 -0
- package/cjs/series/GaugePointer.js +10 -0
- package/cjs/series/GaugePointer.js.map +1 -0
- package/cjs/series/Heatmap.d.ts +1 -1
- package/cjs/series/Heatmap.js +1 -1
- package/cjs/series/Heatmap.js.map +1 -1
- package/cjs/series/Mosaic.d.ts +7 -0
- package/cjs/series/Mosaic.js +10 -0
- package/cjs/series/Mosaic.js.map +1 -0
- package/cjs/series/Pictogram.d.ts +7 -0
- package/cjs/series/Pictogram.js +10 -0
- package/cjs/series/Pictogram.js.map +1 -0
- package/cjs/series/RangeArea.d.ts +7 -0
- package/cjs/series/RangeArea.js +10 -0
- package/cjs/series/RangeArea.js.map +1 -0
- package/cjs/series/Venn.d.ts +7 -0
- package/cjs/series/Venn.js +10 -0
- package/cjs/series/Venn.js.map +1 -0
- package/cjs/series/index.d.ts +5 -0
- package/cjs/series/index.js +9 -7
- package/cjs/series/index.js.map +1 -1
- package/esm/charts/MosaicChart.d.ts +10 -0
- package/esm/charts/MosaicChart.js +11 -0
- package/esm/charts/MosaicChart.js.map +1 -0
- package/esm/charts/PictogramChart.d.ts +10 -0
- package/esm/charts/PictogramChart.js +11 -0
- package/esm/charts/PictogramChart.js.map +1 -0
- package/esm/charts/RangeAreaChart.d.ts +10 -0
- package/esm/charts/RangeAreaChart.js +11 -0
- package/esm/charts/RangeAreaChart.js.map +1 -0
- package/esm/charts/SequenceChart.js +1 -2
- package/esm/charts/VennChart.js +2 -1
- package/esm/charts/index.d.ts +3 -0
- package/esm/charts/index.js +6 -0
- package/esm/charts/index.js.map +1 -1
- package/esm/components/MarkArea.js +1 -2
- package/esm/components/Player.js +2 -1
- package/esm/context/chart.js +1 -1
- package/esm/context/stage.js +1 -1
- package/esm/context/view.js +1 -1
- package/esm/index.d.ts +1 -1
- package/esm/index.js +1 -1
- package/esm/index.js.map +1 -1
- package/esm/series/Gauge.d.ts +1 -1
- package/esm/series/Gauge.js +1 -1
- package/esm/series/Gauge.js.map +1 -1
- package/esm/series/GaugePointer.d.ts +7 -0
- package/esm/series/GaugePointer.js +6 -0
- package/esm/series/GaugePointer.js.map +1 -0
- package/esm/series/Heatmap.d.ts +1 -1
- package/esm/series/Heatmap.js +1 -1
- package/esm/series/Heatmap.js.map +1 -1
- package/esm/series/Mosaic.d.ts +7 -0
- package/esm/series/Mosaic.js +6 -0
- package/esm/series/Mosaic.js.map +1 -0
- package/esm/series/Pictogram.d.ts +7 -0
- package/esm/series/Pictogram.js +6 -0
- package/esm/series/Pictogram.js.map +1 -0
- package/esm/series/RangeArea.d.ts +7 -0
- package/esm/series/RangeArea.js +6 -0
- package/esm/series/RangeArea.js.map +1 -0
- package/esm/series/Venn.d.ts +7 -0
- package/esm/series/Venn.js +6 -0
- package/esm/series/Venn.js.map +1 -0
- package/esm/series/index.d.ts +5 -0
- package/esm/series/index.js +10 -0
- package/esm/series/index.js.map +1 -1
- package/package.json +5 -5
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type React from 'react';
|
|
2
|
+
import type { IMosaicChartSpec } from '@visactor/vchart';
|
|
3
|
+
import type { BaseChartProps } from './BaseChart';
|
|
4
|
+
export interface MosaicChartProps extends Omit<BaseChartProps, 'container' | 'type' | 'data'>, Omit<Partial<IMosaicChartSpec>, 'type'> {
|
|
5
|
+
}
|
|
6
|
+
export declare const MosaicChart: React.ForwardRefExoticComponent<MosaicChartProps & {
|
|
7
|
+
children?: React.ReactNode;
|
|
8
|
+
} & {
|
|
9
|
+
type?: 'mosaic';
|
|
10
|
+
} & import("../containers/withContainer").ContainerProps & React.RefAttributes<any>>;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: !0
|
|
5
|
+
}), exports.MosaicChart = void 0;
|
|
6
|
+
|
|
7
|
+
const vchart_1 = require("@visactor/vchart"), BaseChart_1 = require("./BaseChart"), cartesian_1 = require("./registers/cartesian");
|
|
8
|
+
|
|
9
|
+
exports.MosaicChart = (0, BaseChart_1.createChart)("MosaicChart", {
|
|
10
|
+
type: "mosaic",
|
|
11
|
+
vchartConstrouctor: vchart_1.VChart
|
|
12
|
+
}, [ vchart_1.registerMosaicChart, vchart_1.registerLabel, vchart_1.registerTotalLabel, ...cartesian_1.registers ]);
|
|
13
|
+
//# sourceMappingURL=MosaicChart.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/charts/MosaicChart.tsx"],"names":[],"mappings":";;;AAEA,6CAAkG;AAElG,2CAA0C;AAC1C,qDAAkD;AAQrC,QAAA,WAAW,GAAG,IAAA,uBAAW,EACpC,aAAa,EACb;IACE,IAAI,EAAE,QAAQ;IACd,kBAAkB,EAAE,eAA4B;CACjD,EACD,CAAC,4BAAmB,EAAE,sBAAa,EAAE,2BAAkB,EAAE,GAAG,qBAAS,CAAC,CACvE,CAAC","file":"MosaicChart.js","sourcesContent":["import type React from 'react';\nimport type { IMosaicChartSpec, IVChartConstructor } from '@visactor/vchart';\nimport { VChart, registerMosaicChart, registerLabel, registerTotalLabel } from '@visactor/vchart';\nimport type { BaseChartProps } from './BaseChart';\nimport { createChart } from './BaseChart';\nimport { registers } from './registers/cartesian';\n\nexport interface MosaicChartProps\n extends Omit<BaseChartProps, 'container' | 'type' | 'data'>,\n Omit<Partial<IMosaicChartSpec>, 'type'> {\n //\n}\n\nexport const MosaicChart = createChart<React.PropsWithChildren<MosaicChartProps> & { type?: 'mosaic' }>(\n 'MosaicChart',\n {\n type: 'mosaic',\n vchartConstrouctor: VChart as IVChartConstructor\n },\n [registerMosaicChart, registerLabel, registerTotalLabel, ...registers]\n);\n"]}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type React from 'react';
|
|
2
|
+
import type { IPictogramChartSpec } from '@visactor/vchart';
|
|
3
|
+
import type { BaseChartProps } from './BaseChart';
|
|
4
|
+
export interface PictogramChartProps extends Omit<BaseChartProps, 'container' | 'type' | 'data'>, Omit<Partial<IPictogramChartSpec>, 'type'> {
|
|
5
|
+
}
|
|
6
|
+
export declare const PictogramChart: React.ForwardRefExoticComponent<Omit<PictogramChartProps & {
|
|
7
|
+
children?: React.ReactNode;
|
|
8
|
+
} & {
|
|
9
|
+
type?: 'pictogram';
|
|
10
|
+
} & import("../containers/withContainer").ContainerProps, "ref"> & React.RefAttributes<any>>;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: !0
|
|
5
|
+
}), exports.PictogramChart = void 0;
|
|
6
|
+
|
|
7
|
+
const vchart_1 = require("@visactor/vchart"), simple_1 = require("./registers/simple"), BaseChart_1 = require("./BaseChart");
|
|
8
|
+
|
|
9
|
+
exports.PictogramChart = (0, BaseChart_1.createChart)("PictogramChart", {
|
|
10
|
+
type: "pictogram",
|
|
11
|
+
vchartConstrouctor: vchart_1.VChart
|
|
12
|
+
}, [ vchart_1.registerPictogramChart, vchart_1.registerLabel, ...simple_1.registers ]);
|
|
13
|
+
//# sourceMappingURL=PictogramChart.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/charts/PictogramChart.tsx"],"names":[],"mappings":";;;AAEA,6CAAiF;AACjF,+CAA+C;AAE/C,2CAA0C;AAM7B,QAAA,cAAc,GAAG,IAAA,uBAAW,EACvC,gBAAgB,EAChB;IACE,IAAI,EAAE,WAAW;IACjB,kBAAkB,EAAE,eAA4B;CACjD,EACD,CAAC,+BAAsB,EAAE,sBAAa,EAAE,GAAG,kBAAS,CAAC,CACtD,CAAC","file":"PictogramChart.js","sourcesContent":["import type React from 'react';\nimport type { IPictogramChartSpec, IVChartConstructor } from '@visactor/vchart';\nimport { VChart, registerPictogramChart, registerLabel } from '@visactor/vchart';\nimport { registers } from './registers/simple';\nimport type { BaseChartProps } from './BaseChart';\nimport { createChart } from './BaseChart';\n\nexport interface PictogramChartProps\n extends Omit<BaseChartProps, 'container' | 'type' | 'data'>,\n Omit<Partial<IPictogramChartSpec>, 'type'> {}\n\nexport const PictogramChart = createChart<React.PropsWithChildren<PictogramChartProps> & { type?: 'pictogram' }>(\n 'PictogramChart',\n {\n type: 'pictogram',\n vchartConstrouctor: VChart as IVChartConstructor\n },\n [registerPictogramChart, registerLabel, ...registers]\n);\n"]}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type React from 'react';
|
|
2
|
+
import type { IRangeAreaChartSpec } from '@visactor/vchart';
|
|
3
|
+
import type { BaseChartProps } from './BaseChart';
|
|
4
|
+
export interface RangeAreaChartProps extends Omit<BaseChartProps, 'container' | 'type' | 'data'>, Omit<Partial<IRangeAreaChartSpec>, 'type'> {
|
|
5
|
+
}
|
|
6
|
+
export declare const RangeAreaChart: React.ForwardRefExoticComponent<RangeAreaChartProps & {
|
|
7
|
+
children?: React.ReactNode;
|
|
8
|
+
} & {
|
|
9
|
+
type?: 'rangeArea';
|
|
10
|
+
} & import("../containers/withContainer").ContainerProps & React.RefAttributes<any>>;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: !0
|
|
5
|
+
}), exports.RangeAreaChart = void 0;
|
|
6
|
+
|
|
7
|
+
const vchart_1 = require("@visactor/vchart"), cartesian_1 = require("./registers/cartesian"), BaseChart_1 = require("./BaseChart");
|
|
8
|
+
|
|
9
|
+
exports.RangeAreaChart = (0, BaseChart_1.createChart)("RangeAreaChart", {
|
|
10
|
+
type: "rangeArea",
|
|
11
|
+
vchartConstrouctor: vchart_1.VChart
|
|
12
|
+
}, [ vchart_1.registerRangeAreaChart, vchart_1.registerLabel, ...cartesian_1.registers ]);
|
|
13
|
+
//# sourceMappingURL=RangeAreaChart.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/charts/RangeAreaChart.tsx"],"names":[],"mappings":";;;AAEA,6CAAiF;AACjF,qDAAkD;AAElD,2CAA0C;AAM7B,QAAA,cAAc,GAAG,IAAA,uBAAW,EACvC,gBAAgB,EAChB;IACE,IAAI,EAAE,WAAW;IACjB,kBAAkB,EAAE,eAA4B;CACjD,EACD,CAAC,+BAAsB,EAAE,sBAAa,EAAE,GAAG,qBAAS,CAAC,CACtD,CAAC","file":"RangeAreaChart.js","sourcesContent":["import type React from 'react';\nimport type { IRangeAreaChartSpec, IVChartConstructor } from '@visactor/vchart';\nimport { VChart, registerRangeAreaChart, registerLabel } from '@visactor/vchart';\nimport { registers } from './registers/cartesian';\nimport type { BaseChartProps } from './BaseChart';\nimport { createChart } from './BaseChart';\n\nexport interface RangeAreaChartProps\n extends Omit<BaseChartProps, 'container' | 'type' | 'data'>,\n Omit<Partial<IRangeAreaChartSpec>, 'type'> {}\n\nexport const RangeAreaChart = createChart<React.PropsWithChildren<RangeAreaChartProps> & { type?: 'rangeArea' }>(\n 'RangeAreaChart',\n {\n type: 'rangeArea',\n vchartConstrouctor: VChart as IVChartConstructor\n },\n [registerRangeAreaChart, registerLabel, ...registers]\n);\n"]}
|
|
@@ -9,5 +9,4 @@ const vchart_1 = require("@visactor/vchart"), cartesian_1 = require("./registers
|
|
|
9
9
|
exports.SequenceChart = (0, BaseChart_1.createChart)("SequenceChart", {
|
|
10
10
|
type: "sequence",
|
|
11
11
|
vchartConstrouctor: vchart_1.VChart
|
|
12
|
-
}, [ vchart_1.registerSequenceChart, ...cartesian_1.registers ]);
|
|
13
|
-
//# sourceMappingURL=SequenceChart.js.map
|
|
12
|
+
}, [ vchart_1.registerSequenceChart, ...cartesian_1.registers ]);
|
package/cjs/charts/VennChart.js
CHANGED
|
@@ -9,4 +9,5 @@ const vchart_1 = require("@visactor/vchart"), BaseChart_1 = require("./BaseChart
|
|
|
9
9
|
exports.VennChart = (0, BaseChart_1.createChart)("VennChart", {
|
|
10
10
|
type: "venn",
|
|
11
11
|
vchartConstrouctor: vchart_1.VChart
|
|
12
|
-
}, [ vchart_1.registerVennChart, vchart_1.registerLabel, ...simple_1.registers ]);
|
|
12
|
+
}, [ vchart_1.registerVennChart, vchart_1.registerLabel, ...simple_1.registers ]);
|
|
13
|
+
//# sourceMappingURL=VennChart.js.map
|
package/cjs/charts/index.d.ts
CHANGED
|
@@ -16,9 +16,12 @@ export * from './LinearProgressChart';
|
|
|
16
16
|
export * from './LineChart';
|
|
17
17
|
export * from './LiquidChart';
|
|
18
18
|
export * from './MapChart';
|
|
19
|
+
export * from './MosaicChart';
|
|
20
|
+
export * from './PictogramChart';
|
|
19
21
|
export * from './PieChart';
|
|
20
22
|
export * from './Pie3dChart';
|
|
21
23
|
export * from './RadarChart';
|
|
24
|
+
export * from './RangeAreaChart';
|
|
22
25
|
export * from './RangeColumnChart';
|
|
23
26
|
export * from './RangeColumn3dChart';
|
|
24
27
|
export * from './RoseChart';
|
package/cjs/charts/index.js
CHANGED
|
@@ -26,12 +26,13 @@ __exportStar(require("./GaugeChart"), exports), __exportStar(require("./HeatmapC
|
|
|
26
26
|
__exportStar(require("./Histogram3dChart"), exports), __exportStar(require("./HistogramChart"), exports),
|
|
27
27
|
__exportStar(require("./LinearProgressChart"), exports), __exportStar(require("./LineChart"), exports),
|
|
28
28
|
__exportStar(require("./LiquidChart"), exports), __exportStar(require("./MapChart"), exports),
|
|
29
|
+
__exportStar(require("./MosaicChart"), exports), __exportStar(require("./PictogramChart"), exports),
|
|
29
30
|
__exportStar(require("./PieChart"), exports), __exportStar(require("./Pie3dChart"), exports),
|
|
30
|
-
__exportStar(require("./RadarChart"), exports), __exportStar(require("./
|
|
31
|
-
__exportStar(require("./
|
|
32
|
-
__exportStar(require("./
|
|
33
|
-
__exportStar(require("./
|
|
34
|
-
__exportStar(require("./
|
|
35
|
-
__exportStar(require("./
|
|
36
|
-
__exportStar(require("./VennChart"), exports);
|
|
31
|
+
__exportStar(require("./RadarChart"), exports), __exportStar(require("./RangeAreaChart"), exports),
|
|
32
|
+
__exportStar(require("./RangeColumnChart"), exports), __exportStar(require("./RangeColumn3dChart"), exports),
|
|
33
|
+
__exportStar(require("./RoseChart"), exports), __exportStar(require("./SankeyChart"), exports),
|
|
34
|
+
__exportStar(require("./ScatterChart"), exports), __exportStar(require("./SequenceChart"), exports),
|
|
35
|
+
__exportStar(require("./SunburstChart"), exports), __exportStar(require("./TreemapChart"), exports),
|
|
36
|
+
__exportStar(require("./WordCloudChart"), exports), __exportStar(require("./WordCloud3dChart"), exports),
|
|
37
|
+
__exportStar(require("./WordCloudChart"), exports), __exportStar(require("./VennChart"), exports);
|
|
37
38
|
//# sourceMappingURL=index.js.map
|
package/cjs/charts/index.js.map
CHANGED
|
@@ -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;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"]}
|
|
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,gDAA8B;AAC9B,mDAAiC;AAEjC,6CAA2B;AAC3B,+CAA6B;AAC7B,+CAA6B;AAC7B,mDAAiC;AACjC,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 './MosaicChart';\nexport * from './PictogramChart';\n\nexport * from './PieChart';\nexport * from './Pie3dChart';\nexport * from './RadarChart';\nexport * from './RangeAreaChart';\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 BaseComponent_1 = require("./BaseComponent"), vchart_1 = require("@visactor/vchart");
|
|
8
8
|
|
|
9
|
-
exports.MarkArea = (0, BaseComponent_1.createComponent)("MarkArea", "markArea", null, !1, [ vchart_1.registerMarkArea ]);
|
|
10
|
-
//# sourceMappingURL=MarkArea.js.map
|
|
9
|
+
exports.MarkArea = (0, BaseComponent_1.createComponent)("MarkArea", "markArea", null, !1, [ vchart_1.registerMarkArea ]);
|
package/cjs/components/Player.js
CHANGED
|
@@ -6,4 +6,5 @@ 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 ]);
|
|
9
|
+
exports.Player = (0, BaseComponent_1.createComponent)("Player", "player", eventsUtils_1.PLAYER_CUSTOMIZED_EVENTS, !0, [ vchart_1.registerPlayer ]);
|
|
10
|
+
//# sourceMappingURL=Player.js.map
|
package/cjs/context/chart.js
CHANGED
package/cjs/context/stage.js
CHANGED
package/cjs/context/view.js
CHANGED
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.13.
|
|
7
|
+
export declare const version = "1.13.2";
|
|
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
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,QAAQ,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.13.
|
|
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,QAAQ,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.13.2\";\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"]}
|
package/cjs/series/Gauge.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BaseSeriesProps } from './BaseSeries';
|
|
1
|
+
import type { BaseSeriesProps } from './BaseSeries';
|
|
2
2
|
import type { IGaugeSeriesSpec } from '@visactor/vchart';
|
|
3
3
|
export type GaugeProps = BaseSeriesProps & Omit<IGaugeSeriesSpec, 'type'>;
|
|
4
4
|
export declare const Gauge: import("react").FC<BaseSeriesProps & Omit<IGaugeSeriesSpec, "type"> & {
|
package/cjs/series/Gauge.js
CHANGED
|
@@ -6,5 +6,5 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
|
|
7
7
|
const BaseSeries_1 = require("./BaseSeries"), vchart_1 = require("@visactor/vchart");
|
|
8
8
|
|
|
9
|
-
exports.Gauge = (0, BaseSeries_1.createSeries)("
|
|
9
|
+
exports.Gauge = (0, BaseSeries_1.createSeries)("Gauge", [ "segment", "track", "label" ], "gauge", [ vchart_1.registerGaugeSeries ]);
|
|
10
10
|
//# sourceMappingURL=Gauge.js.map
|
package/cjs/series/Gauge.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/series/Gauge.tsx"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"sources":["../src/series/Gauge.tsx"],"names":[],"mappings":";;;AACA,6CAA4C;AAG5C,6CAAuD;AAI1C,QAAA,KAAK,GAAG,IAAA,yBAAY,EAAa,OAAO,EAAE,CAAC,SAAS,EAAE,OAAO,EAAE,OAAO,CAAC,EAAE,OAAO,EAAE,CAAC,4BAAmB,CAAC,CAAC,CAAC","file":"Gauge.js","sourcesContent":["import type { BaseSeriesProps } from './BaseSeries';\nimport { createSeries } from './BaseSeries';\n\nimport type { IGaugeSeriesSpec } from '@visactor/vchart';\nimport { registerGaugeSeries } from '@visactor/vchart';\n\nexport type GaugeProps = BaseSeriesProps & Omit<IGaugeSeriesSpec, 'type'>;\n\nexport const Gauge = createSeries<GaugeProps>('Gauge', ['segment', 'track', 'label'], 'gauge', [registerGaugeSeries]);\n"]}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { BaseSeriesProps } from './BaseSeries';
|
|
2
|
+
import type { IGaugePointerSeriesSpec } from '@visactor/vchart';
|
|
3
|
+
export type GaugePointerProps = BaseSeriesProps & Omit<IGaugePointerSeriesSpec, 'type'>;
|
|
4
|
+
export declare const GaugePointer: import("react").FC<BaseSeriesProps & Omit<IGaugePointerSeriesSpec, "type"> & {
|
|
5
|
+
updateId?: number;
|
|
6
|
+
componentId?: string;
|
|
7
|
+
}>;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: !0
|
|
5
|
+
}), exports.GaugePointer = void 0;
|
|
6
|
+
|
|
7
|
+
const BaseSeries_1 = require("./BaseSeries"), vchart_1 = require("@visactor/vchart");
|
|
8
|
+
|
|
9
|
+
exports.GaugePointer = (0, BaseSeries_1.createSeries)("GaugePointer", [ "pinBackground", "pin", "pointer" ], "gaugePointer", [ vchart_1.registerGaugePointerSeries ]);
|
|
10
|
+
//# sourceMappingURL=GaugePointer.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/series/GaugePointer.tsx"],"names":[],"mappings":";;;AACA,6CAA4C;AAG5C,6CAA8D;AAIjD,QAAA,YAAY,GAAG,IAAA,yBAAY,EACtC,cAAc,EACd,CAAC,eAAe,EAAE,KAAK,EAAE,SAAS,CAAC,EACnC,cAAc,EACd,CAAC,mCAA0B,CAAC,CAC7B,CAAC","file":"GaugePointer.js","sourcesContent":["import type { BaseSeriesProps } from './BaseSeries';\nimport { createSeries } from './BaseSeries';\n\nimport type { IGaugePointerSeriesSpec } from '@visactor/vchart';\nimport { registerGaugePointerSeries } from '@visactor/vchart';\n\nexport type GaugePointerProps = BaseSeriesProps & Omit<IGaugePointerSeriesSpec, 'type'>;\n\nexport const GaugePointer = createSeries<GaugePointerProps>(\n 'GaugePointer',\n ['pinBackground', 'pin', 'pointer'],\n 'gaugePointer',\n [registerGaugePointerSeries]\n);\n"]}
|
package/cjs/series/Heatmap.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BaseSeriesProps } from './BaseSeries';
|
|
1
|
+
import type { BaseSeriesProps } from './BaseSeries';
|
|
2
2
|
import type { IHeatmapChartSpec } from '@visactor/vchart';
|
|
3
3
|
export type HeatmapProps = BaseSeriesProps & Omit<IHeatmapChartSpec, 'type'>;
|
|
4
4
|
export declare const Heatmap: import("react").FC<BaseSeriesProps & Omit<IHeatmapChartSpec, "type"> & {
|
package/cjs/series/Heatmap.js
CHANGED
|
@@ -6,5 +6,5 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
|
|
7
7
|
const BaseSeries_1 = require("./BaseSeries"), vchart_1 = require("@visactor/vchart");
|
|
8
8
|
|
|
9
|
-
exports.Heatmap = (0, BaseSeries_1.createSeries)("
|
|
9
|
+
exports.Heatmap = (0, BaseSeries_1.createSeries)("Heatmap", [ "cell", "cellBackground", "label" ], "heatmap", [ vchart_1.registerHeatmapSeries ]);
|
|
10
10
|
//# sourceMappingURL=Heatmap.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/series/Heatmap.tsx"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"sources":["../src/series/Heatmap.tsx"],"names":[],"mappings":";;;AACA,6CAA4C;AAE5C,6CAAyD;AAI5C,QAAA,OAAO,GAAG,IAAA,yBAAY,EAAe,SAAS,EAAE,CAAC,MAAM,EAAE,gBAAgB,EAAE,OAAO,CAAC,EAAE,SAAS,EAAE;IAC3G,8BAAqB;CACtB,CAAC,CAAC","file":"Heatmap.js","sourcesContent":["import type { BaseSeriesProps } from './BaseSeries';\nimport { createSeries } from './BaseSeries';\nimport type { IHeatmapChartSpec } from '@visactor/vchart';\nimport { registerHeatmapSeries } from '@visactor/vchart';\n\nexport type HeatmapProps = BaseSeriesProps & Omit<IHeatmapChartSpec, 'type'>;\n\nexport const Heatmap = createSeries<HeatmapProps>('Heatmap', ['cell', 'cellBackground', 'label'], 'heatmap', [\n registerHeatmapSeries\n]);\n"]}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { BaseSeriesProps } from './BaseSeries';
|
|
2
|
+
import type { IMosaicSeriesSpec } from '@visactor/vchart';
|
|
3
|
+
export type MosaicProps = BaseSeriesProps & Omit<IMosaicSeriesSpec, 'type'>;
|
|
4
|
+
export declare const Mosaic: import("react").FC<BaseSeriesProps & Omit<IMosaicSeriesSpec, "type"> & {
|
|
5
|
+
updateId?: number;
|
|
6
|
+
componentId?: string;
|
|
7
|
+
}>;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: !0
|
|
5
|
+
}), exports.Mosaic = void 0;
|
|
6
|
+
|
|
7
|
+
const BaseSeries_1 = require("./BaseSeries"), vchart_1 = require("@visactor/vchart");
|
|
8
|
+
|
|
9
|
+
exports.Mosaic = (0, BaseSeries_1.createSeries)("Mosaic", [ "mosaic" ], "mosaic", [ vchart_1.registerMosaicSeries ]);
|
|
10
|
+
//# sourceMappingURL=Mosaic.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/series/Mosaic.tsx"],"names":[],"mappings":";;;AACA,6CAA4C;AAE5C,6CAAwD;AAI3C,QAAA,MAAM,GAAG,IAAA,yBAAY,EAAc,QAAQ,EAAE,CAAC,QAAQ,CAAC,EAAE,QAAQ,EAAE,CAAC,6BAAoB,CAAC,CAAC,CAAC","file":"Mosaic.js","sourcesContent":["import type { BaseSeriesProps } from './BaseSeries';\nimport { createSeries } from './BaseSeries';\nimport type { IMosaicSeriesSpec } from '@visactor/vchart';\nimport { registerMosaicSeries } from '@visactor/vchart';\n\nexport type MosaicProps = BaseSeriesProps & Omit<IMosaicSeriesSpec, 'type'>;\n\nexport const Mosaic = createSeries<MosaicProps>('Mosaic', ['mosaic'], 'mosaic', [registerMosaicSeries]);\n"]}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { BaseSeriesProps } from './BaseSeries';
|
|
2
|
+
import type { IPictogramSeriesSpec } from '@visactor/vchart';
|
|
3
|
+
export type PictogramProps = BaseSeriesProps & Omit<IPictogramSeriesSpec, 'type'>;
|
|
4
|
+
export declare const Pictogram: import("react").FC<BaseSeriesProps & Omit<IPictogramSeriesSpec, "type"> & {
|
|
5
|
+
updateId?: number;
|
|
6
|
+
componentId?: string;
|
|
7
|
+
}>;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: !0
|
|
5
|
+
}), exports.Pictogram = void 0;
|
|
6
|
+
|
|
7
|
+
const BaseSeries_1 = require("./BaseSeries"), vchart_1 = require("@visactor/vchart");
|
|
8
|
+
|
|
9
|
+
exports.Pictogram = (0, BaseSeries_1.createSeries)("Pictogram", [ "pictogram" ], "pictogram", [ vchart_1.registerPictogramSeries ]);
|
|
10
|
+
//# sourceMappingURL=Pictogram.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/series/Pictogram.tsx"],"names":[],"mappings":";;;AACA,6CAA4C;AAE5C,6CAA2D;AAI9C,QAAA,SAAS,GAAG,IAAA,yBAAY,EAAiB,WAAW,EAAE,CAAC,WAAW,CAAC,EAAE,WAAW,EAAE;IAC7F,gCAAuB;CACxB,CAAC,CAAC","file":"Pictogram.js","sourcesContent":["import type { BaseSeriesProps } from './BaseSeries';\nimport { createSeries } from './BaseSeries';\nimport type { IPictogramSeriesSpec } from '@visactor/vchart';\nimport { registerPictogramSeries } from '@visactor/vchart';\n\nexport type PictogramProps = BaseSeriesProps & Omit<IPictogramSeriesSpec, 'type'>;\n\nexport const Pictogram = createSeries<PictogramProps>('Pictogram', ['pictogram'], 'pictogram', [\n registerPictogramSeries\n]);\n"]}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { BaseSeriesProps } from './BaseSeries';
|
|
2
|
+
import type { IRangeAreaSeriesSpec } from '@visactor/vchart';
|
|
3
|
+
export type RangeAreaProps = BaseSeriesProps & Omit<IRangeAreaSeriesSpec, 'type'>;
|
|
4
|
+
export declare const RangeArea: import("react").FC<BaseSeriesProps & Omit<IRangeAreaSeriesSpec, "type"> & {
|
|
5
|
+
updateId?: number;
|
|
6
|
+
componentId?: string;
|
|
7
|
+
}>;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: !0
|
|
5
|
+
}), exports.RangeArea = void 0;
|
|
6
|
+
|
|
7
|
+
const BaseSeries_1 = require("./BaseSeries"), vchart_1 = require("@visactor/vchart");
|
|
8
|
+
|
|
9
|
+
exports.RangeArea = (0, BaseSeries_1.createSeries)("RangeArea", [ "rangeArea" ], "rangeArea", [ vchart_1.registerRangeAreaSeries ]);
|
|
10
|
+
//# sourceMappingURL=RangeArea.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/series/RangeArea.tsx"],"names":[],"mappings":";;;AACA,6CAA4C;AAE5C,6CAA2D;AAI9C,QAAA,SAAS,GAAG,IAAA,yBAAY,EAAiB,WAAW,EAAE,CAAC,WAAW,CAAC,EAAE,WAAW,EAAE;IAC7F,gCAAuB;CACxB,CAAC,CAAC","file":"RangeArea.js","sourcesContent":["import type { BaseSeriesProps } from './BaseSeries';\nimport { createSeries } from './BaseSeries';\nimport type { IRangeAreaSeriesSpec } from '@visactor/vchart';\nimport { registerRangeAreaSeries } from '@visactor/vchart';\n\nexport type RangeAreaProps = BaseSeriesProps & Omit<IRangeAreaSeriesSpec, 'type'>;\n\nexport const RangeArea = createSeries<RangeAreaProps>('RangeArea', ['rangeArea'], 'rangeArea', [\n registerRangeAreaSeries\n]);\n"]}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { BaseSeriesProps } from './BaseSeries';
|
|
2
|
+
import type { IVennSeriesSpec } from '@visactor/vchart';
|
|
3
|
+
export type VennProps = BaseSeriesProps & Omit<IVennSeriesSpec, 'type'>;
|
|
4
|
+
export declare const Venn: import("react").FC<BaseSeriesProps & Omit<IVennSeriesSpec, "type"> & {
|
|
5
|
+
updateId?: number;
|
|
6
|
+
componentId?: string;
|
|
7
|
+
}>;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: !0
|
|
5
|
+
}), exports.Venn = void 0;
|
|
6
|
+
|
|
7
|
+
const BaseSeries_1 = require("./BaseSeries"), vchart_1 = require("@visactor/vchart");
|
|
8
|
+
|
|
9
|
+
exports.Venn = (0, BaseSeries_1.createSeries)("Venn", [ "circle", "overlap", "overlapLabel" ], "venn", [ vchart_1.registerVennSeries ]);
|
|
10
|
+
//# sourceMappingURL=Venn.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/series/Venn.tsx"],"names":[],"mappings":";;;AACA,6CAA4C;AAE5C,6CAAsD;AAIzC,QAAA,IAAI,GAAG,IAAA,yBAAY,EAAY,MAAM,EAAE,CAAC,QAAQ,EAAE,SAAS,EAAE,cAAc,CAAC,EAAE,MAAM,EAAE;IACjG,2BAAkB;CACnB,CAAC,CAAC","file":"Venn.js","sourcesContent":["import type { BaseSeriesProps } from './BaseSeries';\nimport { createSeries } from './BaseSeries';\nimport type { IVennSeriesSpec } from '@visactor/vchart';\nimport { registerVennSeries } from '@visactor/vchart';\n\nexport type VennProps = BaseSeriesProps & Omit<IVennSeriesSpec, 'type'>;\n\nexport const Venn = createSeries<VennProps>('Venn', ['circle', 'overlap', 'overlapLabel'], 'venn', [\n registerVennSeries\n]);\n"]}
|
package/cjs/series/index.d.ts
CHANGED
|
@@ -10,15 +10,19 @@ export * from './Dot';
|
|
|
10
10
|
export * from './Funnel';
|
|
11
11
|
export * from './Funnel3d';
|
|
12
12
|
export * from './Gauge';
|
|
13
|
+
export * from './GaugePointer';
|
|
13
14
|
export * from './Heatmap';
|
|
14
15
|
export * from './Line';
|
|
15
16
|
export * from './LinearProgress';
|
|
16
17
|
export * from './Link';
|
|
17
18
|
export * from './Liquid';
|
|
18
19
|
export * from './Map';
|
|
20
|
+
export * from './Mosaic';
|
|
21
|
+
export * from './Pictogram';
|
|
19
22
|
export * from './Pie';
|
|
20
23
|
export * from './Pie3d';
|
|
21
24
|
export * from './Radar';
|
|
25
|
+
export * from './RangeArea';
|
|
22
26
|
export * from './RangeColumn';
|
|
23
27
|
export * from './RangeColumn3d';
|
|
24
28
|
export * from './Rose';
|
|
@@ -26,6 +30,7 @@ export * from './Sankey';
|
|
|
26
30
|
export * from './Scatter';
|
|
27
31
|
export * from './Sunburst';
|
|
28
32
|
export * from './Treemap';
|
|
33
|
+
export * from './Venn';
|
|
29
34
|
export * from './Waterfall';
|
|
30
35
|
export * from './WordCloud';
|
|
31
36
|
export * from './WordCloud3d';
|
package/cjs/series/index.js
CHANGED
|
@@ -23,14 +23,16 @@ __exportStar(require("./BoxPlot"), exports), __exportStar(require("./CirclePacki
|
|
|
23
23
|
__exportStar(require("./CircularProgress"), exports), __exportStar(require("./Correlation"), exports),
|
|
24
24
|
__exportStar(require("./Dot"), exports), __exportStar(require("./Funnel"), exports),
|
|
25
25
|
__exportStar(require("./Funnel3d"), exports), __exportStar(require("./Gauge"), exports),
|
|
26
|
-
__exportStar(require("./
|
|
27
|
-
__exportStar(require("./
|
|
28
|
-
__exportStar(require("./
|
|
29
|
-
__exportStar(require("./
|
|
30
|
-
__exportStar(require("./
|
|
26
|
+
__exportStar(require("./GaugePointer"), exports), __exportStar(require("./Heatmap"), exports),
|
|
27
|
+
__exportStar(require("./Line"), exports), __exportStar(require("./LinearProgress"), exports),
|
|
28
|
+
__exportStar(require("./Link"), exports), __exportStar(require("./Liquid"), exports),
|
|
29
|
+
__exportStar(require("./Map"), exports), __exportStar(require("./Mosaic"), exports),
|
|
30
|
+
__exportStar(require("./Pictogram"), exports), __exportStar(require("./Pie"), exports),
|
|
31
|
+
__exportStar(require("./Pie3d"), exports), __exportStar(require("./Radar"), exports),
|
|
32
|
+
__exportStar(require("./RangeArea"), exports), __exportStar(require("./RangeColumn"), exports),
|
|
31
33
|
__exportStar(require("./RangeColumn3d"), exports), __exportStar(require("./Rose"), exports),
|
|
32
34
|
__exportStar(require("./Sankey"), exports), __exportStar(require("./Scatter"), exports),
|
|
33
35
|
__exportStar(require("./Sunburst"), exports), __exportStar(require("./Treemap"), exports),
|
|
34
|
-
__exportStar(require("./
|
|
35
|
-
__exportStar(require("./WordCloud3d"), exports);
|
|
36
|
+
__exportStar(require("./Venn"), exports), __exportStar(require("./Waterfall"), exports),
|
|
37
|
+
__exportStar(require("./WordCloud"), exports), __exportStar(require("./WordCloud3d"), exports);
|
|
36
38
|
//# sourceMappingURL=index.js.map
|
package/cjs/series/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/series/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2CAAyB;AAEzB,yCAAuB;AACvB,wCAAsB;AACtB,0CAAwB;AACxB,4CAA0B;AAE1B,kDAAgC;AAChC,qDAAmC;AACnC,gDAA8B;AAC9B,wCAAsB;AACtB,2CAAyB;AACzB,6CAA2B;AAE3B,0CAAwB;AACxB,4CAA0B;AAC1B,yCAAuB;AACvB,mDAAiC;AACjC,yCAAuB;AACvB,2CAAyB;AAEzB,wCAAsB;AACtB,wCAAsB;AACtB,0CAAwB;AACxB,0CAAwB;AACxB,gDAA8B;AAC9B,kDAAgC;AAChC,yCAAuB;AAEvB,2CAAyB;AACzB,4CAA0B;AAC1B,6CAA2B;AAC3B,4CAA0B;AAC1B,8CAA4B;AAC5B,8CAA4B;AAC5B,gDAA8B","file":"index.js","sourcesContent":["export * from './Series';\n\nexport * from './Area';\nexport * from './Bar';\nexport * from './Bar3d';\nexport * from './BoxPlot';\n\nexport * from './CirclePacking';\nexport * from './CircularProgress';\nexport * from './Correlation';\nexport * from './Dot';\nexport * from './Funnel';\nexport * from './Funnel3d';\n\nexport * from './Gauge';\nexport * from './Heatmap';\nexport * from './Line';\nexport * from './LinearProgress';\nexport * from './Link';\nexport * from './Liquid';\n\nexport * from './Map';\nexport * from './Pie';\nexport * from './Pie3d';\nexport * from './Radar';\nexport * from './RangeColumn';\nexport * from './RangeColumn3d';\nexport * from './Rose';\n\nexport * from './Sankey';\nexport * from './Scatter';\nexport * from './Sunburst';\nexport * from './Treemap';\nexport * from './Waterfall';\nexport * from './WordCloud';\nexport * from './WordCloud3d';\n"]}
|
|
1
|
+
{"version":3,"sources":["../src/series/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2CAAyB;AAEzB,yCAAuB;AACvB,wCAAsB;AACtB,0CAAwB;AACxB,4CAA0B;AAE1B,kDAAgC;AAChC,qDAAmC;AACnC,gDAA8B;AAC9B,wCAAsB;AACtB,2CAAyB;AACzB,6CAA2B;AAE3B,0CAAwB;AACxB,iDAA+B;AAC/B,4CAA0B;AAC1B,yCAAuB;AACvB,mDAAiC;AACjC,yCAAuB;AACvB,2CAAyB;AAEzB,wCAAsB;AACtB,2CAAyB;AACzB,8CAA4B;AAC5B,wCAAsB;AACtB,0CAAwB;AACxB,0CAAwB;AACxB,8CAA4B;AAC5B,gDAA8B;AAC9B,kDAAgC;AAChC,yCAAuB;AAEvB,2CAAyB;AACzB,4CAA0B;AAC1B,6CAA2B;AAC3B,4CAA0B;AAC1B,yCAAuB;AACvB,8CAA4B;AAC5B,8CAA4B;AAC5B,gDAA8B","file":"index.js","sourcesContent":["export * from './Series';\n\nexport * from './Area';\nexport * from './Bar';\nexport * from './Bar3d';\nexport * from './BoxPlot';\n\nexport * from './CirclePacking';\nexport * from './CircularProgress';\nexport * from './Correlation';\nexport * from './Dot';\nexport * from './Funnel';\nexport * from './Funnel3d';\n\nexport * from './Gauge';\nexport * from './GaugePointer';\nexport * from './Heatmap';\nexport * from './Line';\nexport * from './LinearProgress';\nexport * from './Link';\nexport * from './Liquid';\n\nexport * from './Map';\nexport * from './Mosaic';\nexport * from './Pictogram';\nexport * from './Pie';\nexport * from './Pie3d';\nexport * from './Radar';\nexport * from './RangeArea';\nexport * from './RangeColumn';\nexport * from './RangeColumn3d';\nexport * from './Rose';\n\nexport * from './Sankey';\nexport * from './Scatter';\nexport * from './Sunburst';\nexport * from './Treemap';\nexport * from './Venn';\nexport * from './Waterfall';\nexport * from './WordCloud';\nexport * from './WordCloud3d';\n"]}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type React from 'react';
|
|
2
|
+
import type { IMosaicChartSpec } from '@visactor/vchart';
|
|
3
|
+
import type { BaseChartProps } from './BaseChart';
|
|
4
|
+
export interface MosaicChartProps extends Omit<BaseChartProps, 'container' | 'type' | 'data'>, Omit<Partial<IMosaicChartSpec>, 'type'> {
|
|
5
|
+
}
|
|
6
|
+
export declare const MosaicChart: React.ForwardRefExoticComponent<MosaicChartProps & {
|
|
7
|
+
children?: React.ReactNode;
|
|
8
|
+
} & {
|
|
9
|
+
type?: 'mosaic';
|
|
10
|
+
} & import("../containers/withContainer").ContainerProps & React.RefAttributes<any>>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { VChart, registerMosaicChart, registerLabel, registerTotalLabel } from "@visactor/vchart";
|
|
2
|
+
|
|
3
|
+
import { createChart } from "./BaseChart";
|
|
4
|
+
|
|
5
|
+
import { registers } from "./registers/cartesian";
|
|
6
|
+
|
|
7
|
+
export const MosaicChart = createChart("MosaicChart", {
|
|
8
|
+
type: "mosaic",
|
|
9
|
+
vchartConstrouctor: VChart
|
|
10
|
+
}, [ registerMosaicChart, registerLabel, registerTotalLabel, ...registers ]);
|
|
11
|
+
//# sourceMappingURL=MosaicChart.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/charts/MosaicChart.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,MAAM,EAAE,mBAAmB,EAAE,aAAa,EAAE,kBAAkB,EAAE,MAAM,kBAAkB,CAAC;AAElG,OAAO,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAC1C,OAAO,EAAE,SAAS,EAAE,MAAM,uBAAuB,CAAC;AAQlD,MAAM,CAAC,MAAM,WAAW,GAAG,WAAW,CACpC,aAAa,EACb;IACE,IAAI,EAAE,QAAQ;IACd,kBAAkB,EAAE,MAA4B;CACjD,EACD,CAAC,mBAAmB,EAAE,aAAa,EAAE,kBAAkB,EAAE,GAAG,SAAS,CAAC,CACvE,CAAC","file":"MosaicChart.js","sourcesContent":["import type React from 'react';\nimport type { IMosaicChartSpec, IVChartConstructor } from '@visactor/vchart';\nimport { VChart, registerMosaicChart, registerLabel, registerTotalLabel } from '@visactor/vchart';\nimport type { BaseChartProps } from './BaseChart';\nimport { createChart } from './BaseChart';\nimport { registers } from './registers/cartesian';\n\nexport interface MosaicChartProps\n extends Omit<BaseChartProps, 'container' | 'type' | 'data'>,\n Omit<Partial<IMosaicChartSpec>, 'type'> {\n //\n}\n\nexport const MosaicChart = createChart<React.PropsWithChildren<MosaicChartProps> & { type?: 'mosaic' }>(\n 'MosaicChart',\n {\n type: 'mosaic',\n vchartConstrouctor: VChart as IVChartConstructor\n },\n [registerMosaicChart, registerLabel, registerTotalLabel, ...registers]\n);\n"]}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type React from 'react';
|
|
2
|
+
import type { IPictogramChartSpec } from '@visactor/vchart';
|
|
3
|
+
import type { BaseChartProps } from './BaseChart';
|
|
4
|
+
export interface PictogramChartProps extends Omit<BaseChartProps, 'container' | 'type' | 'data'>, Omit<Partial<IPictogramChartSpec>, 'type'> {
|
|
5
|
+
}
|
|
6
|
+
export declare const PictogramChart: React.ForwardRefExoticComponent<Omit<PictogramChartProps & {
|
|
7
|
+
children?: React.ReactNode;
|
|
8
|
+
} & {
|
|
9
|
+
type?: 'pictogram';
|
|
10
|
+
} & import("../containers/withContainer").ContainerProps, "ref"> & React.RefAttributes<any>>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { VChart, registerPictogramChart, registerLabel } from "@visactor/vchart";
|
|
2
|
+
|
|
3
|
+
import { registers } from "./registers/simple";
|
|
4
|
+
|
|
5
|
+
import { createChart } from "./BaseChart";
|
|
6
|
+
|
|
7
|
+
export const PictogramChart = createChart("PictogramChart", {
|
|
8
|
+
type: "pictogram",
|
|
9
|
+
vchartConstrouctor: VChart
|
|
10
|
+
}, [ registerPictogramChart, registerLabel, ...registers ]);
|
|
11
|
+
//# sourceMappingURL=PictogramChart.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/charts/PictogramChart.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,MAAM,EAAE,sBAAsB,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AACjF,OAAO,EAAE,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAE/C,OAAO,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAM1C,MAAM,CAAC,MAAM,cAAc,GAAG,WAAW,CACvC,gBAAgB,EAChB;IACE,IAAI,EAAE,WAAW;IACjB,kBAAkB,EAAE,MAA4B;CACjD,EACD,CAAC,sBAAsB,EAAE,aAAa,EAAE,GAAG,SAAS,CAAC,CACtD,CAAC","file":"PictogramChart.js","sourcesContent":["import type React from 'react';\nimport type { IPictogramChartSpec, IVChartConstructor } from '@visactor/vchart';\nimport { VChart, registerPictogramChart, registerLabel } from '@visactor/vchart';\nimport { registers } from './registers/simple';\nimport type { BaseChartProps } from './BaseChart';\nimport { createChart } from './BaseChart';\n\nexport interface PictogramChartProps\n extends Omit<BaseChartProps, 'container' | 'type' | 'data'>,\n Omit<Partial<IPictogramChartSpec>, 'type'> {}\n\nexport const PictogramChart = createChart<React.PropsWithChildren<PictogramChartProps> & { type?: 'pictogram' }>(\n 'PictogramChart',\n {\n type: 'pictogram',\n vchartConstrouctor: VChart as IVChartConstructor\n },\n [registerPictogramChart, registerLabel, ...registers]\n);\n"]}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type React from 'react';
|
|
2
|
+
import type { IRangeAreaChartSpec } from '@visactor/vchart';
|
|
3
|
+
import type { BaseChartProps } from './BaseChart';
|
|
4
|
+
export interface RangeAreaChartProps extends Omit<BaseChartProps, 'container' | 'type' | 'data'>, Omit<Partial<IRangeAreaChartSpec>, 'type'> {
|
|
5
|
+
}
|
|
6
|
+
export declare const RangeAreaChart: React.ForwardRefExoticComponent<RangeAreaChartProps & {
|
|
7
|
+
children?: React.ReactNode;
|
|
8
|
+
} & {
|
|
9
|
+
type?: 'rangeArea';
|
|
10
|
+
} & import("../containers/withContainer").ContainerProps & React.RefAttributes<any>>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { VChart, registerRangeAreaChart, registerLabel } from "@visactor/vchart";
|
|
2
|
+
|
|
3
|
+
import { registers } from "./registers/cartesian";
|
|
4
|
+
|
|
5
|
+
import { createChart } from "./BaseChart";
|
|
6
|
+
|
|
7
|
+
export const RangeAreaChart = createChart("RangeAreaChart", {
|
|
8
|
+
type: "rangeArea",
|
|
9
|
+
vchartConstrouctor: VChart
|
|
10
|
+
}, [ registerRangeAreaChart, registerLabel, ...registers ]);
|
|
11
|
+
//# sourceMappingURL=RangeAreaChart.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/charts/RangeAreaChart.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,MAAM,EAAE,sBAAsB,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AACjF,OAAO,EAAE,SAAS,EAAE,MAAM,uBAAuB,CAAC;AAElD,OAAO,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAM1C,MAAM,CAAC,MAAM,cAAc,GAAG,WAAW,CACvC,gBAAgB,EAChB;IACE,IAAI,EAAE,WAAW;IACjB,kBAAkB,EAAE,MAA4B;CACjD,EACD,CAAC,sBAAsB,EAAE,aAAa,EAAE,GAAG,SAAS,CAAC,CACtD,CAAC","file":"RangeAreaChart.js","sourcesContent":["import type React from 'react';\nimport type { IRangeAreaChartSpec, IVChartConstructor } from '@visactor/vchart';\nimport { VChart, registerRangeAreaChart, registerLabel } from '@visactor/vchart';\nimport { registers } from './registers/cartesian';\nimport type { BaseChartProps } from './BaseChart';\nimport { createChart } from './BaseChart';\n\nexport interface RangeAreaChartProps\n extends Omit<BaseChartProps, 'container' | 'type' | 'data'>,\n Omit<Partial<IRangeAreaChartSpec>, 'type'> {}\n\nexport const RangeAreaChart = createChart<React.PropsWithChildren<RangeAreaChartProps> & { type?: 'rangeArea' }>(\n 'RangeAreaChart',\n {\n type: 'rangeArea',\n vchartConstrouctor: VChart as IVChartConstructor\n },\n [registerRangeAreaChart, registerLabel, ...registers]\n);\n"]}
|
|
@@ -7,5 +7,4 @@ import { createChart } from "./BaseChart";
|
|
|
7
7
|
export const SequenceChart = createChart("SequenceChart", {
|
|
8
8
|
type: "sequence",
|
|
9
9
|
vchartConstrouctor: VChart
|
|
10
|
-
}, [ registerSequenceChart, ...registers ]);
|
|
11
|
-
//# sourceMappingURL=SequenceChart.js.map
|
|
10
|
+
}, [ registerSequenceChart, ...registers ]);
|
package/esm/charts/VennChart.js
CHANGED
|
@@ -7,4 +7,5 @@ import { registers } from "./registers/simple";
|
|
|
7
7
|
export const VennChart = createChart("VennChart", {
|
|
8
8
|
type: "venn",
|
|
9
9
|
vchartConstrouctor: VChart
|
|
10
|
-
}, [ registerVennChart, registerLabel, ...registers ]);
|
|
10
|
+
}, [ registerVennChart, registerLabel, ...registers ]);
|
|
11
|
+
//# sourceMappingURL=VennChart.js.map
|
package/esm/charts/index.d.ts
CHANGED
|
@@ -16,9 +16,12 @@ export * from './LinearProgressChart';
|
|
|
16
16
|
export * from './LineChart';
|
|
17
17
|
export * from './LiquidChart';
|
|
18
18
|
export * from './MapChart';
|
|
19
|
+
export * from './MosaicChart';
|
|
20
|
+
export * from './PictogramChart';
|
|
19
21
|
export * from './PieChart';
|
|
20
22
|
export * from './Pie3dChart';
|
|
21
23
|
export * from './RadarChart';
|
|
24
|
+
export * from './RangeAreaChart';
|
|
22
25
|
export * from './RangeColumnChart';
|
|
23
26
|
export * from './RangeColumn3dChart';
|
|
24
27
|
export * from './RoseChart';
|
package/esm/charts/index.js
CHANGED
|
@@ -34,12 +34,18 @@ export * from "./LiquidChart";
|
|
|
34
34
|
|
|
35
35
|
export * from "./MapChart";
|
|
36
36
|
|
|
37
|
+
export * from "./MosaicChart";
|
|
38
|
+
|
|
39
|
+
export * from "./PictogramChart";
|
|
40
|
+
|
|
37
41
|
export * from "./PieChart";
|
|
38
42
|
|
|
39
43
|
export * from "./Pie3dChart";
|
|
40
44
|
|
|
41
45
|
export * from "./RadarChart";
|
|
42
46
|
|
|
47
|
+
export * from "./RangeAreaChart";
|
|
48
|
+
|
|
43
49
|
export * from "./RangeColumnChart";
|
|
44
50
|
|
|
45
51
|
export * from "./RangeColumn3dChart";
|
package/esm/charts/index.js.map
CHANGED
|
@@ -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;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"]}
|
|
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,eAAe,CAAC;AAC9B,cAAc,kBAAkB,CAAC;AAEjC,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC;AAC7B,cAAc,kBAAkB,CAAC;AACjC,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 './MosaicChart';\nexport * from './PictogramChart';\n\nexport * from './PieChart';\nexport * from './Pie3dChart';\nexport * from './RadarChart';\nexport * from './RangeAreaChart';\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"]}
|
|
@@ -2,5 +2,4 @@ import { createComponent } from "./BaseComponent";
|
|
|
2
2
|
|
|
3
3
|
import { registerMarkArea } from "@visactor/vchart";
|
|
4
4
|
|
|
5
|
-
export const MarkArea = createComponent("MarkArea", "markArea", null, !1, [ registerMarkArea ]);
|
|
6
|
-
//# sourceMappingURL=MarkArea.js.map
|
|
5
|
+
export const MarkArea = createComponent("MarkArea", "markArea", null, !1, [ registerMarkArea ]);
|
package/esm/components/Player.js
CHANGED
|
@@ -4,4 +4,5 @@ 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 ]);
|
|
7
|
+
export const Player = createComponent("Player", "player", PLAYER_CUSTOMIZED_EVENTS, !0, [ registerPlayer ]);
|
|
8
|
+
//# sourceMappingURL=Player.js.map
|
package/esm/context/chart.js
CHANGED
package/esm/context/stage.js
CHANGED
package/esm/context/view.js
CHANGED
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.13.
|
|
7
|
+
export declare const version = "1.13.2";
|
|
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
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,QAAQ,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.13.
|
|
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,QAAQ,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.13.2\";\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"]}
|
package/esm/series/Gauge.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BaseSeriesProps } from './BaseSeries';
|
|
1
|
+
import type { BaseSeriesProps } from './BaseSeries';
|
|
2
2
|
import type { IGaugeSeriesSpec } from '@visactor/vchart';
|
|
3
3
|
export type GaugeProps = BaseSeriesProps & Omit<IGaugeSeriesSpec, 'type'>;
|
|
4
4
|
export declare const Gauge: import("react").FC<BaseSeriesProps & Omit<IGaugeSeriesSpec, "type"> & {
|
package/esm/series/Gauge.js
CHANGED
|
@@ -2,5 +2,5 @@ import { createSeries } from "./BaseSeries";
|
|
|
2
2
|
|
|
3
3
|
import { registerGaugeSeries } from "@visactor/vchart";
|
|
4
4
|
|
|
5
|
-
export const Gauge = createSeries("
|
|
5
|
+
export const Gauge = createSeries("Gauge", [ "segment", "track", "label" ], "gauge", [ registerGaugeSeries ]);
|
|
6
6
|
//# sourceMappingURL=Gauge.js.map
|
package/esm/series/Gauge.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/series/Gauge.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../src/series/Gauge.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAG5C,OAAO,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAC;AAIvD,MAAM,CAAC,MAAM,KAAK,GAAG,YAAY,CAAa,OAAO,EAAE,CAAC,SAAS,EAAE,OAAO,EAAE,OAAO,CAAC,EAAE,OAAO,EAAE,CAAC,mBAAmB,CAAC,CAAC,CAAC","file":"Gauge.js","sourcesContent":["import type { BaseSeriesProps } from './BaseSeries';\nimport { createSeries } from './BaseSeries';\n\nimport type { IGaugeSeriesSpec } from '@visactor/vchart';\nimport { registerGaugeSeries } from '@visactor/vchart';\n\nexport type GaugeProps = BaseSeriesProps & Omit<IGaugeSeriesSpec, 'type'>;\n\nexport const Gauge = createSeries<GaugeProps>('Gauge', ['segment', 'track', 'label'], 'gauge', [registerGaugeSeries]);\n"]}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { BaseSeriesProps } from './BaseSeries';
|
|
2
|
+
import type { IGaugePointerSeriesSpec } from '@visactor/vchart';
|
|
3
|
+
export type GaugePointerProps = BaseSeriesProps & Omit<IGaugePointerSeriesSpec, 'type'>;
|
|
4
|
+
export declare const GaugePointer: import("react").FC<BaseSeriesProps & Omit<IGaugePointerSeriesSpec, "type"> & {
|
|
5
|
+
updateId?: number;
|
|
6
|
+
componentId?: string;
|
|
7
|
+
}>;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { createSeries } from "./BaseSeries";
|
|
2
|
+
|
|
3
|
+
import { registerGaugePointerSeries } from "@visactor/vchart";
|
|
4
|
+
|
|
5
|
+
export const GaugePointer = createSeries("GaugePointer", [ "pinBackground", "pin", "pointer" ], "gaugePointer", [ registerGaugePointerSeries ]);
|
|
6
|
+
//# sourceMappingURL=GaugePointer.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/series/GaugePointer.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAG5C,OAAO,EAAE,0BAA0B,EAAE,MAAM,kBAAkB,CAAC;AAI9D,MAAM,CAAC,MAAM,YAAY,GAAG,YAAY,CACtC,cAAc,EACd,CAAC,eAAe,EAAE,KAAK,EAAE,SAAS,CAAC,EACnC,cAAc,EACd,CAAC,0BAA0B,CAAC,CAC7B,CAAC","file":"GaugePointer.js","sourcesContent":["import type { BaseSeriesProps } from './BaseSeries';\nimport { createSeries } from './BaseSeries';\n\nimport type { IGaugePointerSeriesSpec } from '@visactor/vchart';\nimport { registerGaugePointerSeries } from '@visactor/vchart';\n\nexport type GaugePointerProps = BaseSeriesProps & Omit<IGaugePointerSeriesSpec, 'type'>;\n\nexport const GaugePointer = createSeries<GaugePointerProps>(\n 'GaugePointer',\n ['pinBackground', 'pin', 'pointer'],\n 'gaugePointer',\n [registerGaugePointerSeries]\n);\n"]}
|
package/esm/series/Heatmap.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BaseSeriesProps } from './BaseSeries';
|
|
1
|
+
import type { BaseSeriesProps } from './BaseSeries';
|
|
2
2
|
import type { IHeatmapChartSpec } from '@visactor/vchart';
|
|
3
3
|
export type HeatmapProps = BaseSeriesProps & Omit<IHeatmapChartSpec, 'type'>;
|
|
4
4
|
export declare const Heatmap: import("react").FC<BaseSeriesProps & Omit<IHeatmapChartSpec, "type"> & {
|
package/esm/series/Heatmap.js
CHANGED
|
@@ -2,5 +2,5 @@ import { createSeries } from "./BaseSeries";
|
|
|
2
2
|
|
|
3
3
|
import { registerHeatmapSeries } from "@visactor/vchart";
|
|
4
4
|
|
|
5
|
-
export const Heatmap = createSeries("
|
|
5
|
+
export const Heatmap = createSeries("Heatmap", [ "cell", "cellBackground", "label" ], "heatmap", [ registerHeatmapSeries ]);
|
|
6
6
|
//# sourceMappingURL=Heatmap.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/series/Heatmap.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../src/series/Heatmap.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAE5C,OAAO,EAAE,qBAAqB,EAAE,MAAM,kBAAkB,CAAC;AAIzD,MAAM,CAAC,MAAM,OAAO,GAAG,YAAY,CAAe,SAAS,EAAE,CAAC,MAAM,EAAE,gBAAgB,EAAE,OAAO,CAAC,EAAE,SAAS,EAAE;IAC3G,qBAAqB;CACtB,CAAC,CAAC","file":"Heatmap.js","sourcesContent":["import type { BaseSeriesProps } from './BaseSeries';\nimport { createSeries } from './BaseSeries';\nimport type { IHeatmapChartSpec } from '@visactor/vchart';\nimport { registerHeatmapSeries } from '@visactor/vchart';\n\nexport type HeatmapProps = BaseSeriesProps & Omit<IHeatmapChartSpec, 'type'>;\n\nexport const Heatmap = createSeries<HeatmapProps>('Heatmap', ['cell', 'cellBackground', 'label'], 'heatmap', [\n registerHeatmapSeries\n]);\n"]}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { BaseSeriesProps } from './BaseSeries';
|
|
2
|
+
import type { IMosaicSeriesSpec } from '@visactor/vchart';
|
|
3
|
+
export type MosaicProps = BaseSeriesProps & Omit<IMosaicSeriesSpec, 'type'>;
|
|
4
|
+
export declare const Mosaic: import("react").FC<BaseSeriesProps & Omit<IMosaicSeriesSpec, "type"> & {
|
|
5
|
+
updateId?: number;
|
|
6
|
+
componentId?: string;
|
|
7
|
+
}>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/series/Mosaic.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAE5C,OAAO,EAAE,oBAAoB,EAAE,MAAM,kBAAkB,CAAC;AAIxD,MAAM,CAAC,MAAM,MAAM,GAAG,YAAY,CAAc,QAAQ,EAAE,CAAC,QAAQ,CAAC,EAAE,QAAQ,EAAE,CAAC,oBAAoB,CAAC,CAAC,CAAC","file":"Mosaic.js","sourcesContent":["import type { BaseSeriesProps } from './BaseSeries';\nimport { createSeries } from './BaseSeries';\nimport type { IMosaicSeriesSpec } from '@visactor/vchart';\nimport { registerMosaicSeries } from '@visactor/vchart';\n\nexport type MosaicProps = BaseSeriesProps & Omit<IMosaicSeriesSpec, 'type'>;\n\nexport const Mosaic = createSeries<MosaicProps>('Mosaic', ['mosaic'], 'mosaic', [registerMosaicSeries]);\n"]}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { BaseSeriesProps } from './BaseSeries';
|
|
2
|
+
import type { IPictogramSeriesSpec } from '@visactor/vchart';
|
|
3
|
+
export type PictogramProps = BaseSeriesProps & Omit<IPictogramSeriesSpec, 'type'>;
|
|
4
|
+
export declare const Pictogram: import("react").FC<BaseSeriesProps & Omit<IPictogramSeriesSpec, "type"> & {
|
|
5
|
+
updateId?: number;
|
|
6
|
+
componentId?: string;
|
|
7
|
+
}>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/series/Pictogram.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAE5C,OAAO,EAAE,uBAAuB,EAAE,MAAM,kBAAkB,CAAC;AAI3D,MAAM,CAAC,MAAM,SAAS,GAAG,YAAY,CAAiB,WAAW,EAAE,CAAC,WAAW,CAAC,EAAE,WAAW,EAAE;IAC7F,uBAAuB;CACxB,CAAC,CAAC","file":"Pictogram.js","sourcesContent":["import type { BaseSeriesProps } from './BaseSeries';\nimport { createSeries } from './BaseSeries';\nimport type { IPictogramSeriesSpec } from '@visactor/vchart';\nimport { registerPictogramSeries } from '@visactor/vchart';\n\nexport type PictogramProps = BaseSeriesProps & Omit<IPictogramSeriesSpec, 'type'>;\n\nexport const Pictogram = createSeries<PictogramProps>('Pictogram', ['pictogram'], 'pictogram', [\n registerPictogramSeries\n]);\n"]}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { BaseSeriesProps } from './BaseSeries';
|
|
2
|
+
import type { IRangeAreaSeriesSpec } from '@visactor/vchart';
|
|
3
|
+
export type RangeAreaProps = BaseSeriesProps & Omit<IRangeAreaSeriesSpec, 'type'>;
|
|
4
|
+
export declare const RangeArea: import("react").FC<BaseSeriesProps & Omit<IRangeAreaSeriesSpec, "type"> & {
|
|
5
|
+
updateId?: number;
|
|
6
|
+
componentId?: string;
|
|
7
|
+
}>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/series/RangeArea.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAE5C,OAAO,EAAE,uBAAuB,EAAE,MAAM,kBAAkB,CAAC;AAI3D,MAAM,CAAC,MAAM,SAAS,GAAG,YAAY,CAAiB,WAAW,EAAE,CAAC,WAAW,CAAC,EAAE,WAAW,EAAE;IAC7F,uBAAuB;CACxB,CAAC,CAAC","file":"RangeArea.js","sourcesContent":["import type { BaseSeriesProps } from './BaseSeries';\nimport { createSeries } from './BaseSeries';\nimport type { IRangeAreaSeriesSpec } from '@visactor/vchart';\nimport { registerRangeAreaSeries } from '@visactor/vchart';\n\nexport type RangeAreaProps = BaseSeriesProps & Omit<IRangeAreaSeriesSpec, 'type'>;\n\nexport const RangeArea = createSeries<RangeAreaProps>('RangeArea', ['rangeArea'], 'rangeArea', [\n registerRangeAreaSeries\n]);\n"]}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { BaseSeriesProps } from './BaseSeries';
|
|
2
|
+
import type { IVennSeriesSpec } from '@visactor/vchart';
|
|
3
|
+
export type VennProps = BaseSeriesProps & Omit<IVennSeriesSpec, 'type'>;
|
|
4
|
+
export declare const Venn: import("react").FC<BaseSeriesProps & Omit<IVennSeriesSpec, "type"> & {
|
|
5
|
+
updateId?: number;
|
|
6
|
+
componentId?: string;
|
|
7
|
+
}>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/series/Venn.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAE5C,OAAO,EAAE,kBAAkB,EAAE,MAAM,kBAAkB,CAAC;AAItD,MAAM,CAAC,MAAM,IAAI,GAAG,YAAY,CAAY,MAAM,EAAE,CAAC,QAAQ,EAAE,SAAS,EAAE,cAAc,CAAC,EAAE,MAAM,EAAE;IACjG,kBAAkB;CACnB,CAAC,CAAC","file":"Venn.js","sourcesContent":["import type { BaseSeriesProps } from './BaseSeries';\nimport { createSeries } from './BaseSeries';\nimport type { IVennSeriesSpec } from '@visactor/vchart';\nimport { registerVennSeries } from '@visactor/vchart';\n\nexport type VennProps = BaseSeriesProps & Omit<IVennSeriesSpec, 'type'>;\n\nexport const Venn = createSeries<VennProps>('Venn', ['circle', 'overlap', 'overlapLabel'], 'venn', [\n registerVennSeries\n]);\n"]}
|
package/esm/series/index.d.ts
CHANGED
|
@@ -10,15 +10,19 @@ export * from './Dot';
|
|
|
10
10
|
export * from './Funnel';
|
|
11
11
|
export * from './Funnel3d';
|
|
12
12
|
export * from './Gauge';
|
|
13
|
+
export * from './GaugePointer';
|
|
13
14
|
export * from './Heatmap';
|
|
14
15
|
export * from './Line';
|
|
15
16
|
export * from './LinearProgress';
|
|
16
17
|
export * from './Link';
|
|
17
18
|
export * from './Liquid';
|
|
18
19
|
export * from './Map';
|
|
20
|
+
export * from './Mosaic';
|
|
21
|
+
export * from './Pictogram';
|
|
19
22
|
export * from './Pie';
|
|
20
23
|
export * from './Pie3d';
|
|
21
24
|
export * from './Radar';
|
|
25
|
+
export * from './RangeArea';
|
|
22
26
|
export * from './RangeColumn';
|
|
23
27
|
export * from './RangeColumn3d';
|
|
24
28
|
export * from './Rose';
|
|
@@ -26,6 +30,7 @@ export * from './Sankey';
|
|
|
26
30
|
export * from './Scatter';
|
|
27
31
|
export * from './Sunburst';
|
|
28
32
|
export * from './Treemap';
|
|
33
|
+
export * from './Venn';
|
|
29
34
|
export * from './Waterfall';
|
|
30
35
|
export * from './WordCloud';
|
|
31
36
|
export * from './WordCloud3d';
|
package/esm/series/index.js
CHANGED
|
@@ -22,6 +22,8 @@ export * from "./Funnel3d";
|
|
|
22
22
|
|
|
23
23
|
export * from "./Gauge";
|
|
24
24
|
|
|
25
|
+
export * from "./GaugePointer";
|
|
26
|
+
|
|
25
27
|
export * from "./Heatmap";
|
|
26
28
|
|
|
27
29
|
export * from "./Line";
|
|
@@ -34,12 +36,18 @@ export * from "./Liquid";
|
|
|
34
36
|
|
|
35
37
|
export * from "./Map";
|
|
36
38
|
|
|
39
|
+
export * from "./Mosaic";
|
|
40
|
+
|
|
41
|
+
export * from "./Pictogram";
|
|
42
|
+
|
|
37
43
|
export * from "./Pie";
|
|
38
44
|
|
|
39
45
|
export * from "./Pie3d";
|
|
40
46
|
|
|
41
47
|
export * from "./Radar";
|
|
42
48
|
|
|
49
|
+
export * from "./RangeArea";
|
|
50
|
+
|
|
43
51
|
export * from "./RangeColumn";
|
|
44
52
|
|
|
45
53
|
export * from "./RangeColumn3d";
|
|
@@ -54,6 +62,8 @@ export * from "./Sunburst";
|
|
|
54
62
|
|
|
55
63
|
export * from "./Treemap";
|
|
56
64
|
|
|
65
|
+
export * from "./Venn";
|
|
66
|
+
|
|
57
67
|
export * from "./Waterfall";
|
|
58
68
|
|
|
59
69
|
export * from "./WordCloud";
|
package/esm/series/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/series/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AAEzB,cAAc,QAAQ,CAAC;AACvB,cAAc,OAAO,CAAC;AACtB,cAAc,SAAS,CAAC;AACxB,cAAc,WAAW,CAAC;AAE1B,cAAc,iBAAiB,CAAC;AAChC,cAAc,oBAAoB,CAAC;AACnC,cAAc,eAAe,CAAC;AAC9B,cAAc,OAAO,CAAC;AACtB,cAAc,UAAU,CAAC;AACzB,cAAc,YAAY,CAAC;AAE3B,cAAc,SAAS,CAAC;AACxB,cAAc,WAAW,CAAC;AAC1B,cAAc,QAAQ,CAAC;AACvB,cAAc,kBAAkB,CAAC;AACjC,cAAc,QAAQ,CAAC;AACvB,cAAc,UAAU,CAAC;AAEzB,cAAc,OAAO,CAAC;AACtB,cAAc,OAAO,CAAC;AACtB,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC;AACxB,cAAc,eAAe,CAAC;AAC9B,cAAc,iBAAiB,CAAC;AAChC,cAAc,QAAQ,CAAC;AAEvB,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,eAAe,CAAC","file":"index.js","sourcesContent":["export * from './Series';\n\nexport * from './Area';\nexport * from './Bar';\nexport * from './Bar3d';\nexport * from './BoxPlot';\n\nexport * from './CirclePacking';\nexport * from './CircularProgress';\nexport * from './Correlation';\nexport * from './Dot';\nexport * from './Funnel';\nexport * from './Funnel3d';\n\nexport * from './Gauge';\nexport * from './Heatmap';\nexport * from './Line';\nexport * from './LinearProgress';\nexport * from './Link';\nexport * from './Liquid';\n\nexport * from './Map';\nexport * from './Pie';\nexport * from './Pie3d';\nexport * from './Radar';\nexport * from './RangeColumn';\nexport * from './RangeColumn3d';\nexport * from './Rose';\n\nexport * from './Sankey';\nexport * from './Scatter';\nexport * from './Sunburst';\nexport * from './Treemap';\nexport * from './Waterfall';\nexport * from './WordCloud';\nexport * from './WordCloud3d';\n"]}
|
|
1
|
+
{"version":3,"sources":["../src/series/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AAEzB,cAAc,QAAQ,CAAC;AACvB,cAAc,OAAO,CAAC;AACtB,cAAc,SAAS,CAAC;AACxB,cAAc,WAAW,CAAC;AAE1B,cAAc,iBAAiB,CAAC;AAChC,cAAc,oBAAoB,CAAC;AACnC,cAAc,eAAe,CAAC;AAC9B,cAAc,OAAO,CAAC;AACtB,cAAc,UAAU,CAAC;AACzB,cAAc,YAAY,CAAC;AAE3B,cAAc,SAAS,CAAC;AACxB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,WAAW,CAAC;AAC1B,cAAc,QAAQ,CAAC;AACvB,cAAc,kBAAkB,CAAC;AACjC,cAAc,QAAQ,CAAC;AACvB,cAAc,UAAU,CAAC;AAEzB,cAAc,OAAO,CAAC;AACtB,cAAc,UAAU,CAAC;AACzB,cAAc,aAAa,CAAC;AAC5B,cAAc,OAAO,CAAC;AACtB,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC;AACxB,cAAc,aAAa,CAAC;AAC5B,cAAc,eAAe,CAAC;AAC9B,cAAc,iBAAiB,CAAC;AAChC,cAAc,QAAQ,CAAC;AAEvB,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,WAAW,CAAC;AAC1B,cAAc,QAAQ,CAAC;AACvB,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,eAAe,CAAC","file":"index.js","sourcesContent":["export * from './Series';\n\nexport * from './Area';\nexport * from './Bar';\nexport * from './Bar3d';\nexport * from './BoxPlot';\n\nexport * from './CirclePacking';\nexport * from './CircularProgress';\nexport * from './Correlation';\nexport * from './Dot';\nexport * from './Funnel';\nexport * from './Funnel3d';\n\nexport * from './Gauge';\nexport * from './GaugePointer';\nexport * from './Heatmap';\nexport * from './Line';\nexport * from './LinearProgress';\nexport * from './Link';\nexport * from './Liquid';\n\nexport * from './Map';\nexport * from './Mosaic';\nexport * from './Pictogram';\nexport * from './Pie';\nexport * from './Pie3d';\nexport * from './Radar';\nexport * from './RangeArea';\nexport * from './RangeColumn';\nexport * from './RangeColumn3d';\nexport * from './Rose';\n\nexport * from './Sankey';\nexport * from './Scatter';\nexport * from './Sunburst';\nexport * from './Treemap';\nexport * from './Venn';\nexport * from './Waterfall';\nexport * from './WordCloud';\nexport * from './WordCloud3d';\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visactor/react-vchart",
|
|
3
|
-
"version": "1.13.
|
|
3
|
+
"version": "1.13.2",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"description": "The react version of VChart 4.x",
|
|
6
6
|
"keywords": [
|
|
@@ -23,11 +23,11 @@
|
|
|
23
23
|
"dist"
|
|
24
24
|
],
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@visactor/vchart": "1.13.
|
|
26
|
+
"@visactor/vchart": "1.13.2",
|
|
27
27
|
"@visactor/vutils": "~0.19.2",
|
|
28
|
-
"@visactor/vrender-core": "0.21.
|
|
29
|
-
"@visactor/vrender-kits": "0.21.
|
|
30
|
-
"@visactor/vgrammar-core": "0.15.
|
|
28
|
+
"@visactor/vrender-core": "0.21.4",
|
|
29
|
+
"@visactor/vrender-kits": "0.21.4",
|
|
30
|
+
"@visactor/vgrammar-core": "0.15.2",
|
|
31
31
|
"react-is": "^18.2.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|