@visactor/react-vchart 1.7.4 → 1.8.0-alpha.0
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/VChart.d.ts +1 -1
- package/cjs/VChart.js.map +1 -1
- package/cjs/components/Region.js +2 -1
- package/cjs/components/ScrollBar.js +1 -2
- package/esm/VChart.d.ts +1 -1
- package/esm/VChart.js.map +1 -1
- package/esm/components/Region.js +2 -1
- package/esm/components/ScrollBar.js +1 -2
- package/package.json +5 -5
package/cjs/VChart.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { BaseChartProps } from './charts/BaseChart';
|
|
2
|
-
export type VChartProps = Omit<BaseChartProps, 'container'>;
|
|
2
|
+
export type VChartProps = Omit<BaseChartProps, 'container' | 'data' | 'width' | 'height'>;
|
|
3
3
|
export declare const VChart: import("react").ForwardRefExoticComponent<VChartProps & import("./containers/withContainer").ContainerProps & import("react").RefAttributes<any>>;
|
package/cjs/VChart.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["VChart.tsx"],"names":[],"mappings":";;;AAAA,kDAAiE;AAIpD,QAAA,MAAM,GAAG,IAAA,uBAAW,EAAc,QAAQ,CAAC,CAAC","file":"VChart.js","sourcesContent":["import { BaseChartProps, createChart } from './charts/BaseChart';\n\nexport type VChartProps = Omit<BaseChartProps, 'container'>;\n\nexport const VChart = createChart<VChartProps>('VChart');\n"]}
|
|
1
|
+
{"version":3,"sources":["VChart.tsx"],"names":[],"mappings":";;;AAAA,kDAAiE;AAIpD,QAAA,MAAM,GAAG,IAAA,uBAAW,EAAc,QAAQ,CAAC,CAAC","file":"VChart.js","sourcesContent":["import { BaseChartProps, createChart } from './charts/BaseChart';\n\nexport type VChartProps = Omit<BaseChartProps, 'container' | 'data' | 'width' | 'height'>;\n\nexport const VChart = createChart<VChartProps>('VChart');\n"]}
|
package/cjs/components/Region.js
CHANGED
|
@@ -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
|
|
@@ -6,5 +6,4 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
|
|
7
7
|
const eventsUtils_1 = require("../eventsUtils"), BaseComponent_1 = require("./BaseComponent");
|
|
8
8
|
|
|
9
|
-
exports.ScrollBar = (0, BaseComponent_1.createComponent)("ScrollBar", "scrollBar", eventsUtils_1.SCROLLBAR_CUSTOMIZED_EVENTS);
|
|
10
|
-
//# sourceMappingURL=ScrollBar.js.map
|
|
9
|
+
exports.ScrollBar = (0, BaseComponent_1.createComponent)("ScrollBar", "scrollBar", eventsUtils_1.SCROLLBAR_CUSTOMIZED_EVENTS);
|
package/esm/VChart.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { BaseChartProps } from './charts/BaseChart';
|
|
2
|
-
export type VChartProps = Omit<BaseChartProps, 'container'>;
|
|
2
|
+
export type VChartProps = Omit<BaseChartProps, 'container' | 'data' | 'width' | 'height'>;
|
|
3
3
|
export declare const VChart: import("react").ForwardRefExoticComponent<VChartProps & import("./containers/withContainer").ContainerProps & import("react").RefAttributes<any>>;
|
package/esm/VChart.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["VChart.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAkB,WAAW,EAAE,MAAM,oBAAoB,CAAC;AAIjE,MAAM,CAAC,MAAM,MAAM,GAAG,WAAW,CAAc,QAAQ,CAAC,CAAC","file":"VChart.js","sourcesContent":["import { BaseChartProps, createChart } from './charts/BaseChart';\n\nexport type VChartProps = Omit<BaseChartProps, 'container'>;\n\nexport const VChart = createChart<VChartProps>('VChart');\n"]}
|
|
1
|
+
{"version":3,"sources":["VChart.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAkB,WAAW,EAAE,MAAM,oBAAoB,CAAC;AAIjE,MAAM,CAAC,MAAM,MAAM,GAAG,WAAW,CAAc,QAAQ,CAAC,CAAC","file":"VChart.js","sourcesContent":["import { BaseChartProps, createChart } from './charts/BaseChart';\n\nexport type VChartProps = Omit<BaseChartProps, 'container' | 'data' | 'width' | 'height'>;\n\nexport const VChart = createChart<VChartProps>('VChart');\n"]}
|
package/esm/components/Region.js
CHANGED
|
@@ -2,5 +2,4 @@ import { SCROLLBAR_CUSTOMIZED_EVENTS } from "../eventsUtils";
|
|
|
2
2
|
|
|
3
3
|
import { createComponent } from "./BaseComponent";
|
|
4
4
|
|
|
5
|
-
export const ScrollBar = createComponent("ScrollBar", "scrollBar", SCROLLBAR_CUSTOMIZED_EVENTS);
|
|
6
|
-
//# sourceMappingURL=ScrollBar.js.map
|
|
5
|
+
export const ScrollBar = createComponent("ScrollBar", "scrollBar", SCROLLBAR_CUSTOMIZED_EVENTS);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visactor/react-vchart",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.8.0-alpha.0",
|
|
4
4
|
"description": "The react version of VChart 4.x",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -22,11 +22,11 @@
|
|
|
22
22
|
"dist"
|
|
23
23
|
],
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@visactor/vchart": "1.
|
|
25
|
+
"@visactor/vchart": "1.8.0-alpha.0",
|
|
26
26
|
"@visactor/vutils": "~0.17.1",
|
|
27
|
-
"@visactor/vrender-core": "~0.
|
|
28
|
-
"@visactor/vrender-kits": "~0.
|
|
29
|
-
"@visactor/vgrammar-core": "~0.
|
|
27
|
+
"@visactor/vrender-core": "~0.17.4",
|
|
28
|
+
"@visactor/vrender-kits": "~0.17.4",
|
|
29
|
+
"@visactor/vgrammar-core": "~0.10.2",
|
|
30
30
|
"react-is": "^18.2.0"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|