@visactor/react-vchart 1.13.23-alpha.0 → 1.13.23
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/Histogram3dChart.js +1 -2
- package/cjs/charts/HistogramChart.js +2 -1
- package/cjs/charts/ScatterChart.js +1 -2
- package/cjs/charts/SequenceChart.js +2 -1
- package/cjs/components/Region.js +1 -2
- package/cjs/components/ScrollBar.js +2 -1
- package/esm/charts/Histogram3dChart.js +1 -2
- package/esm/charts/HistogramChart.js +2 -1
- package/esm/charts/ScatterChart.js +1 -2
- package/esm/charts/SequenceChart.js +2 -1
- package/esm/components/Region.js +1 -2
- package/esm/components/ScrollBar.js +2 -1
- package/package.json +2 -2
|
@@ -9,5 +9,4 @@ const vchart_1 = require("@visactor/vchart"), BaseChart_1 = require("./BaseChart
|
|
|
9
9
|
exports.Histogram3dChart = (0, BaseChart_1.createChart)("Histogram3dChart", {
|
|
10
10
|
type: "histogram3d",
|
|
11
11
|
vchartConstructor: vchart_1.VChart
|
|
12
|
-
}, [ vchart_1.registerHistogram3dChart, vchart_1.registerLabel, ...cartesian_1.registers ]);
|
|
13
|
-
//# sourceMappingURL=Histogram3dChart.js.map
|
|
12
|
+
}, [ vchart_1.registerHistogram3dChart, vchart_1.registerLabel, ...cartesian_1.registers ]);
|
|
@@ -9,4 +9,5 @@ const vchart_1 = require("@visactor/vchart"), BaseChart_1 = require("./BaseChart
|
|
|
9
9
|
exports.HistogramChart = (0, BaseChart_1.createChart)("HistogramChart", {
|
|
10
10
|
type: "histogram",
|
|
11
11
|
vchartConstructor: vchart_1.VChart
|
|
12
|
-
}, [ vchart_1.registerHistogramChart, vchart_1.registerLabel, ...cartesian_1.registers ]);
|
|
12
|
+
}, [ vchart_1.registerHistogramChart, vchart_1.registerLabel, ...cartesian_1.registers ]);
|
|
13
|
+
//# sourceMappingURL=HistogramChart.js.map
|
|
@@ -9,5 +9,4 @@ const vchart_1 = require("@visactor/vchart"), cartesian_1 = require("./registers
|
|
|
9
9
|
exports.ScatterChart = (0, BaseChart_1.createChart)("ScatterChart", {
|
|
10
10
|
type: "scatter",
|
|
11
11
|
vchartConstructor: vchart_1.VChart
|
|
12
|
-
}, [ vchart_1.registerScatterChart, vchart_1.registerLabel, ...cartesian_1.registers ]);
|
|
13
|
-
//# sourceMappingURL=ScatterChart.js.map
|
|
12
|
+
}, [ vchart_1.registerScatterChart, vchart_1.registerLabel, ...cartesian_1.registers ]);
|
|
@@ -9,4 +9,5 @@ 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
|
vchartConstructor: vchart_1.VChart
|
|
12
|
-
}, [ vchart_1.registerSequenceChart, ...cartesian_1.registers ]);
|
|
12
|
+
}, [ vchart_1.registerSequenceChart, ...cartesian_1.registers ]);
|
|
13
|
+
//# sourceMappingURL=SequenceChart.js.map
|
package/cjs/components/Region.js
CHANGED
|
@@ -6,5 +6,4 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
|
|
7
7
|
const BaseComponent_1 = require("./BaseComponent");
|
|
8
8
|
|
|
9
|
-
exports.Region = (0, BaseComponent_1.createComponent)("Region", "region");
|
|
10
|
-
//# sourceMappingURL=Region.js.map
|
|
9
|
+
exports.Region = (0, BaseComponent_1.createComponent)("Region", "region");
|
|
@@ -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.ScrollBar = (0, BaseComponent_1.createComponent)("ScrollBar", "scrollBar", eventsUtils_1.SCROLLBAR_CUSTOMIZED_EVENTS, !1, [ vchart_1.registerScrollBar ]);
|
|
9
|
+
exports.ScrollBar = (0, BaseComponent_1.createComponent)("ScrollBar", "scrollBar", eventsUtils_1.SCROLLBAR_CUSTOMIZED_EVENTS, !1, [ vchart_1.registerScrollBar ]);
|
|
10
|
+
//# sourceMappingURL=ScrollBar.js.map
|
|
@@ -7,5 +7,4 @@ import { registers } from "./registers/cartesian";
|
|
|
7
7
|
export const Histogram3dChart = createChart("Histogram3dChart", {
|
|
8
8
|
type: "histogram3d",
|
|
9
9
|
vchartConstructor: VChart
|
|
10
|
-
}, [ registerHistogram3dChart, registerLabel, ...registers ]);
|
|
11
|
-
//# sourceMappingURL=Histogram3dChart.js.map
|
|
10
|
+
}, [ registerHistogram3dChart, registerLabel, ...registers ]);
|
|
@@ -7,4 +7,5 @@ import { registers } from "./registers/cartesian";
|
|
|
7
7
|
export const HistogramChart = createChart("HistogramChart", {
|
|
8
8
|
type: "histogram",
|
|
9
9
|
vchartConstructor: VChart
|
|
10
|
-
}, [ registerHistogramChart, registerLabel, ...registers ]);
|
|
10
|
+
}, [ registerHistogramChart, registerLabel, ...registers ]);
|
|
11
|
+
//# sourceMappingURL=HistogramChart.js.map
|
|
@@ -7,5 +7,4 @@ import { createChart } from "./BaseChart";
|
|
|
7
7
|
export const ScatterChart = createChart("ScatterChart", {
|
|
8
8
|
type: "scatter",
|
|
9
9
|
vchartConstructor: VChart
|
|
10
|
-
}, [ registerScatterChart, registerLabel, ...registers ]);
|
|
11
|
-
//# sourceMappingURL=ScatterChart.js.map
|
|
10
|
+
}, [ registerScatterChart, registerLabel, ...registers ]);
|
|
@@ -7,4 +7,5 @@ import { createChart } from "./BaseChart";
|
|
|
7
7
|
export const SequenceChart = createChart("SequenceChart", {
|
|
8
8
|
type: "sequence",
|
|
9
9
|
vchartConstructor: VChart
|
|
10
|
-
}, [ registerSequenceChart, ...registers ]);
|
|
10
|
+
}, [ registerSequenceChart, ...registers ]);
|
|
11
|
+
//# sourceMappingURL=SequenceChart.js.map
|
package/esm/components/Region.js
CHANGED
|
@@ -4,4 +4,5 @@ import { createComponent } from "./BaseComponent";
|
|
|
4
4
|
|
|
5
5
|
import { registerScrollBar } from "@visactor/vchart";
|
|
6
6
|
|
|
7
|
-
export const ScrollBar = createComponent("ScrollBar", "scrollBar", SCROLLBAR_CUSTOMIZED_EVENTS, !1, [ registerScrollBar ]);
|
|
7
|
+
export const ScrollBar = createComponent("ScrollBar", "scrollBar", SCROLLBAR_CUSTOMIZED_EVENTS, !1, [ registerScrollBar ]);
|
|
8
|
+
//# sourceMappingURL=ScrollBar.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visactor/react-vchart",
|
|
3
|
-
"version": "1.13.23
|
|
3
|
+
"version": "1.13.23",
|
|
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.13.23
|
|
26
|
+
"@visactor/vchart": "1.13.23",
|
|
27
27
|
"@visactor/vutils": "~0.19.7",
|
|
28
28
|
"@visactor/vrender-core": "0.22.19",
|
|
29
29
|
"@visactor/vrender-kits": "0.22.19",
|