@visactor/react-vchart 1.1.0-beta.9 → 1.1.1-beta.1

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.
@@ -1,16 +1,18 @@
1
- export { AreaChart } from './AreaChart';
2
- export { BarChart } from './BarChart';
3
- export { LineChart } from './LineChart';
4
- export { ScatterChart } from './ScatterChart';
5
- export { PieChart } from './PieChart';
6
- export { RoseChart } from './RoseChart';
7
- export { RadarChart } from './RadarChart';
8
- export { MapChart } from './MapChart';
9
- export { HistogramChart } from './HistogramChart';
10
- export { WordCloudChart } from './WordCloudChart';
11
- export { FunnelChart } from './FunnelChart';
12
- export { BoxPlotChart } from './BoxPlotChart';
13
- export { CircularProgressChart } from './CircularProgressChart';
14
- export { LinearProgressChart } from './LinearProgressChart';
15
- export { RangeColumnChart } from './RangeColumnChart';
16
- export { CommonChart } from './CommonChart';
1
+ export * from './AreaChart';
2
+ export * from './BarChart';
3
+ export * from './LineChart';
4
+ export * from './ScatterChart';
5
+ export * from './PieChart';
6
+ export * from './RoseChart';
7
+ export * from './RadarChart';
8
+ export * from './MapChart';
9
+ export * from './HistogramChart';
10
+ export * from './WordCloudChart';
11
+ export * from './FunnelChart';
12
+ export * from './BoxPlotChart';
13
+ export * from './CircularProgressChart';
14
+ export * from './LinearProgressChart';
15
+ export * from './RangeColumnChart';
16
+ export * from './CommonChart';
17
+ export type { ChartOptions } from './BaseChart';
18
+ export type { IData, IChartSpec } from '@visactor/vchart';
@@ -1,150 +1,28 @@
1
1
  "use strict";
2
2
 
3
+ var __createBinding = this && this.__createBinding || (Object.create ? function(o, m, k, k2) {
4
+ void 0 === k2 && (k2 = k);
5
+ var desc = Object.getOwnPropertyDescriptor(m, k);
6
+ desc && !("get" in desc ? !m.__esModule : desc.writable || desc.configurable) || (desc = {
7
+ enumerable: !0,
8
+ get: function() {
9
+ return m[k];
10
+ }
11
+ }), Object.defineProperty(o, k2, desc);
12
+ } : function(o, m, k, k2) {
13
+ void 0 === k2 && (k2 = k), o[k2] = m[k];
14
+ }), __exportStar = this && this.__exportStar || function(m, exports) {
15
+ for (var p in m) "default" === p || Object.prototype.hasOwnProperty.call(exports, p) || __createBinding(exports, m, p);
16
+ };
17
+
3
18
  Object.defineProperty(exports, "__esModule", {
4
19
  value: !0
5
- }), exports.CommonChart = exports.RangeColumnChart = exports.LinearProgressChart = exports.CircularProgressChart = exports.BoxPlotChart = exports.FunnelChart = exports.WordCloudChart = exports.HistogramChart = exports.MapChart = exports.RadarChart = exports.RoseChart = exports.PieChart = exports.ScatterChart = exports.LineChart = exports.BarChart = exports.AreaChart = void 0;
6
-
7
- var AreaChart_1 = require("./AreaChart");
8
-
9
- Object.defineProperty(exports, "AreaChart", {
10
- enumerable: !0,
11
- get: function() {
12
- return AreaChart_1.AreaChart;
13
- }
14
- });
15
-
16
- var BarChart_1 = require("./BarChart");
17
-
18
- Object.defineProperty(exports, "BarChart", {
19
- enumerable: !0,
20
- get: function() {
21
- return BarChart_1.BarChart;
22
- }
23
- });
24
-
25
- var LineChart_1 = require("./LineChart");
26
-
27
- Object.defineProperty(exports, "LineChart", {
28
- enumerable: !0,
29
- get: function() {
30
- return LineChart_1.LineChart;
31
- }
32
- });
33
-
34
- var ScatterChart_1 = require("./ScatterChart");
35
-
36
- Object.defineProperty(exports, "ScatterChart", {
37
- enumerable: !0,
38
- get: function() {
39
- return ScatterChart_1.ScatterChart;
40
- }
41
- });
42
-
43
- var PieChart_1 = require("./PieChart");
44
-
45
- Object.defineProperty(exports, "PieChart", {
46
- enumerable: !0,
47
- get: function() {
48
- return PieChart_1.PieChart;
49
- }
50
- });
51
-
52
- var RoseChart_1 = require("./RoseChart");
53
-
54
- Object.defineProperty(exports, "RoseChart", {
55
- enumerable: !0,
56
- get: function() {
57
- return RoseChart_1.RoseChart;
58
- }
59
- });
60
-
61
- var RadarChart_1 = require("./RadarChart");
62
-
63
- Object.defineProperty(exports, "RadarChart", {
64
- enumerable: !0,
65
- get: function() {
66
- return RadarChart_1.RadarChart;
67
- }
68
- });
69
-
70
- var MapChart_1 = require("./MapChart");
71
-
72
- Object.defineProperty(exports, "MapChart", {
73
- enumerable: !0,
74
- get: function() {
75
- return MapChart_1.MapChart;
76
- }
77
- });
78
-
79
- var HistogramChart_1 = require("./HistogramChart");
80
-
81
- Object.defineProperty(exports, "HistogramChart", {
82
- enumerable: !0,
83
- get: function() {
84
- return HistogramChart_1.HistogramChart;
85
- }
86
- });
87
-
88
- var WordCloudChart_1 = require("./WordCloudChart");
89
-
90
- Object.defineProperty(exports, "WordCloudChart", {
91
- enumerable: !0,
92
- get: function() {
93
- return WordCloudChart_1.WordCloudChart;
94
- }
95
- });
96
-
97
- var FunnelChart_1 = require("./FunnelChart");
98
-
99
- Object.defineProperty(exports, "FunnelChart", {
100
- enumerable: !0,
101
- get: function() {
102
- return FunnelChart_1.FunnelChart;
103
- }
104
- });
105
-
106
- var BoxPlotChart_1 = require("./BoxPlotChart");
107
-
108
- Object.defineProperty(exports, "BoxPlotChart", {
109
- enumerable: !0,
110
- get: function() {
111
- return BoxPlotChart_1.BoxPlotChart;
112
- }
113
- });
114
-
115
- var CircularProgressChart_1 = require("./CircularProgressChart");
116
-
117
- Object.defineProperty(exports, "CircularProgressChart", {
118
- enumerable: !0,
119
- get: function() {
120
- return CircularProgressChart_1.CircularProgressChart;
121
- }
122
- });
123
-
124
- var LinearProgressChart_1 = require("./LinearProgressChart");
125
-
126
- Object.defineProperty(exports, "LinearProgressChart", {
127
- enumerable: !0,
128
- get: function() {
129
- return LinearProgressChart_1.LinearProgressChart;
130
- }
131
- });
132
-
133
- var RangeColumnChart_1 = require("./RangeColumnChart");
134
-
135
- Object.defineProperty(exports, "RangeColumnChart", {
136
- enumerable: !0,
137
- get: function() {
138
- return RangeColumnChart_1.RangeColumnChart;
139
- }
140
- });
141
-
142
- var CommonChart_1 = require("./CommonChart");
143
-
144
- Object.defineProperty(exports, "CommonChart", {
145
- enumerable: !0,
146
- get: function() {
147
- return CommonChart_1.CommonChart;
148
- }
149
- });
20
+ }), __exportStar(require("./AreaChart"), exports), __exportStar(require("./BarChart"), exports),
21
+ __exportStar(require("./LineChart"), exports), __exportStar(require("./ScatterChart"), exports),
22
+ __exportStar(require("./PieChart"), exports), __exportStar(require("./RoseChart"), exports),
23
+ __exportStar(require("./RadarChart"), exports), __exportStar(require("./MapChart"), exports),
24
+ __exportStar(require("./HistogramChart"), exports), __exportStar(require("./WordCloudChart"), exports),
25
+ __exportStar(require("./FunnelChart"), exports), __exportStar(require("./BoxPlotChart"), exports),
26
+ __exportStar(require("./CircularProgressChart"), exports), __exportStar(require("./LinearProgressChart"), exports),
27
+ __exportStar(require("./RangeColumnChart"), exports), __exportStar(require("./CommonChart"), exports);
150
28
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["charts/index.ts"],"names":[],"mappings":";;;AAAA,yCAAuC;AAA9B,sGAAA,SAAS,OAAA;AAClB,uCAAqC;AAA5B,oGAAA,QAAQ,OAAA;AACjB,yCAAuC;AAA9B,sGAAA,SAAS,OAAA;AAClB,+CAA6C;AAApC,4GAAA,YAAY,OAAA;AAErB,uCAAqC;AAA5B,oGAAA,QAAQ,OAAA;AACjB,yCAAuC;AAA9B,sGAAA,SAAS,OAAA;AAElB,2CAAyC;AAAhC,wGAAA,UAAU,OAAA;AAEnB,uCAAqC;AAA5B,oGAAA,QAAQ,OAAA;AACjB,mDAAiD;AAAxC,gHAAA,cAAc,OAAA;AACvB,mDAAiD;AAAxC,gHAAA,cAAc,OAAA;AACvB,6CAA2C;AAAlC,0GAAA,WAAW,OAAA;AACpB,+CAA6C;AAApC,4GAAA,YAAY,OAAA;AAErB,iEAA+D;AAAtD,8HAAA,qBAAqB,OAAA;AAC9B,6DAA2D;AAAlD,0HAAA,mBAAmB,OAAA;AAC5B,uDAAqD;AAA5C,oHAAA,gBAAgB,OAAA;AAEzB,6CAA2C;AAAlC,0GAAA,WAAW,OAAA","file":"index.js","sourcesContent":["export { AreaChart } from './AreaChart'\nexport { BarChart } from './BarChart'\nexport { LineChart } from './LineChart'\nexport { ScatterChart } from './ScatterChart'\n\nexport { PieChart } from './PieChart'\nexport { RoseChart } from './RoseChart'\n\nexport { RadarChart } from './RadarChart'\n\nexport { MapChart } from './MapChart'\nexport { HistogramChart } from './HistogramChart'\nexport { WordCloudChart } from './WordCloudChart'\nexport { FunnelChart } from './FunnelChart'\nexport { BoxPlotChart } from './BoxPlotChart'\n\nexport { CircularProgressChart } from './CircularProgressChart'\nexport { LinearProgressChart } from './LinearProgressChart'\nexport { RangeColumnChart } from './RangeColumnChart'\n\nexport { CommonChart } from './CommonChart'"]}
1
+ {"version":3,"sources":["charts/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8CAA4B;AAC5B,6CAA2B;AAC3B,8CAA4B;AAC5B,iDAA+B;AAE/B,6CAA2B;AAC3B,8CAA4B;AAE5B,+CAA6B;AAE7B,6CAA2B;AAC3B,mDAAiC;AACjC,mDAAiC;AACjC,gDAA8B;AAC9B,iDAA+B;AAE/B,0DAAwC;AACxC,wDAAsC;AACtC,qDAAmC;AAEnC,gDAA8B","file":"index.js","sourcesContent":["export * from './AreaChart';\nexport * from './BarChart';\nexport * from './LineChart';\nexport * from './ScatterChart';\n\nexport * from './PieChart';\nexport * from './RoseChart';\n\nexport * from './RadarChart';\n\nexport * from './MapChart';\nexport * from './HistogramChart';\nexport * from './WordCloudChart';\nexport * from './FunnelChart';\nexport * from './BoxPlotChart';\n\nexport * from './CircularProgressChart';\nexport * from './LinearProgressChart';\nexport * from './RangeColumnChart';\n\nexport * from './CommonChart';\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");
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);
@@ -6,4 +6,5 @@ Object.defineProperty(exports, "__esModule", {
6
6
 
7
7
  const BaseComponent_1 = require("./BaseComponent");
8
8
 
9
- exports.Tooltip = (0, BaseComponent_1.createComponent)("Tooltip", "tooltip", null, !0);
9
+ exports.Tooltip = (0, BaseComponent_1.createComponent)("Tooltip", "tooltip", null, !0);
10
+ //# sourceMappingURL=Tooltip.js.map
package/cjs/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  export * from './charts';
2
2
  export * from './series';
3
3
  export * from './components';
4
- export { VChart } from './VChart';
4
+ export * from './VChart';
5
5
  import VChartCore from '@visactor/vchart';
6
6
  export { VChartCore };
package/cjs/index.js CHANGED
@@ -21,17 +21,8 @@ var __createBinding = this && this.__createBinding || (Object.create ? function(
21
21
 
22
22
  Object.defineProperty(exports, "__esModule", {
23
23
  value: !0
24
- }), exports.VChartCore = exports.VChart = void 0, __exportStar(require("./charts"), exports),
25
- __exportStar(require("./series"), exports), __exportStar(require("./components"), exports);
26
-
27
- var VChart_1 = require("./VChart");
28
-
29
- Object.defineProperty(exports, "VChart", {
30
- enumerable: !0,
31
- get: function() {
32
- return VChart_1.VChart;
33
- }
34
- });
24
+ }), exports.VChartCore = void 0, __exportStar(require("./charts"), exports), __exportStar(require("./series"), exports),
25
+ __exportStar(require("./components"), exports), __exportStar(require("./VChart"), exports);
35
26
 
36
27
  const vchart_1 = __importDefault(require("@visactor/vchart"));
37
28
 
package/cjs/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA,2CAAyB;AACzB,2CAAyB;AACzB,+CAA6B;AAC7B,mCAAkC;AAAzB,gGAAA,MAAM,OAAA;AAEf,8DAA0C;AACjC,qBADF,gBAAU,CACE","file":"index.js","sourcesContent":["export * from './charts';\nexport * from './series';\nexport * from './components';\nexport { VChart } from './VChart';\n\nimport VChartCore from '@visactor/vchart';\nexport { VChartCore };\n"]}
1
+ {"version":3,"sources":["index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA,2CAAyB;AACzB,2CAAyB;AACzB,+CAA6B;AAC7B,2CAAyB;AAEzB,8DAA0C;AACjC,qBADF,gBAAU,CACE","file":"index.js","sourcesContent":["export * from './charts';\nexport * from './series';\nexport * from './components';\nexport * from './VChart';\n\nimport VChartCore from '@visactor/vchart';\nexport { VChartCore };\n"]}
@@ -1,16 +1,18 @@
1
- export { AreaChart } from './AreaChart';
2
- export { BarChart } from './BarChart';
3
- export { LineChart } from './LineChart';
4
- export { ScatterChart } from './ScatterChart';
5
- export { PieChart } from './PieChart';
6
- export { RoseChart } from './RoseChart';
7
- export { RadarChart } from './RadarChart';
8
- export { MapChart } from './MapChart';
9
- export { HistogramChart } from './HistogramChart';
10
- export { WordCloudChart } from './WordCloudChart';
11
- export { FunnelChart } from './FunnelChart';
12
- export { BoxPlotChart } from './BoxPlotChart';
13
- export { CircularProgressChart } from './CircularProgressChart';
14
- export { LinearProgressChart } from './LinearProgressChart';
15
- export { RangeColumnChart } from './RangeColumnChart';
16
- export { CommonChart } from './CommonChart';
1
+ export * from './AreaChart';
2
+ export * from './BarChart';
3
+ export * from './LineChart';
4
+ export * from './ScatterChart';
5
+ export * from './PieChart';
6
+ export * from './RoseChart';
7
+ export * from './RadarChart';
8
+ export * from './MapChart';
9
+ export * from './HistogramChart';
10
+ export * from './WordCloudChart';
11
+ export * from './FunnelChart';
12
+ export * from './BoxPlotChart';
13
+ export * from './CircularProgressChart';
14
+ export * from './LinearProgressChart';
15
+ export * from './RangeColumnChart';
16
+ export * from './CommonChart';
17
+ export type { ChartOptions } from './BaseChart';
18
+ export type { IData, IChartSpec } from '@visactor/vchart';
@@ -1,32 +1,32 @@
1
- export { AreaChart } from "./AreaChart";
1
+ export * from "./AreaChart";
2
2
 
3
- export { BarChart } from "./BarChart";
3
+ export * from "./BarChart";
4
4
 
5
- export { LineChart } from "./LineChart";
5
+ export * from "./LineChart";
6
6
 
7
- export { ScatterChart } from "./ScatterChart";
7
+ export * from "./ScatterChart";
8
8
 
9
- export { PieChart } from "./PieChart";
9
+ export * from "./PieChart";
10
10
 
11
- export { RoseChart } from "./RoseChart";
11
+ export * from "./RoseChart";
12
12
 
13
- export { RadarChart } from "./RadarChart";
13
+ export * from "./RadarChart";
14
14
 
15
- export { MapChart } from "./MapChart";
15
+ export * from "./MapChart";
16
16
 
17
- export { HistogramChart } from "./HistogramChart";
17
+ export * from "./HistogramChart";
18
18
 
19
- export { WordCloudChart } from "./WordCloudChart";
19
+ export * from "./WordCloudChart";
20
20
 
21
- export { FunnelChart } from "./FunnelChart";
21
+ export * from "./FunnelChart";
22
22
 
23
- export { BoxPlotChart } from "./BoxPlotChart";
23
+ export * from "./BoxPlotChart";
24
24
 
25
- export { CircularProgressChart } from "./CircularProgressChart";
25
+ export * from "./CircularProgressChart";
26
26
 
27
- export { LinearProgressChart } from "./LinearProgressChart";
27
+ export * from "./LinearProgressChart";
28
28
 
29
- export { RangeColumnChart } from "./RangeColumnChart";
29
+ export * from "./RangeColumnChart";
30
30
 
31
- export { CommonChart } from "./CommonChart";
31
+ export * from "./CommonChart";
32
32
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["charts/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAA;AACvC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAA;AACrC,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAA;AACvC,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAA;AAE7C,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAA;AACrC,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAA;AAEvC,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA;AAEzC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAA;AACrC,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AACjD,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AACjD,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAA;AAC3C,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAA;AAE7C,OAAO,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAA;AAC/D,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AAC3D,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAA;AAErD,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAA","file":"index.js","sourcesContent":["export { AreaChart } from './AreaChart'\nexport { BarChart } from './BarChart'\nexport { LineChart } from './LineChart'\nexport { ScatterChart } from './ScatterChart'\n\nexport { PieChart } from './PieChart'\nexport { RoseChart } from './RoseChart'\n\nexport { RadarChart } from './RadarChart'\n\nexport { MapChart } from './MapChart'\nexport { HistogramChart } from './HistogramChart'\nexport { WordCloudChart } from './WordCloudChart'\nexport { FunnelChart } from './FunnelChart'\nexport { BoxPlotChart } from './BoxPlotChart'\n\nexport { CircularProgressChart } from './CircularProgressChart'\nexport { LinearProgressChart } from './LinearProgressChart'\nexport { RangeColumnChart } from './RangeColumnChart'\n\nexport { CommonChart } from './CommonChart'"]}
1
+ {"version":3,"sources":["charts/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,cAAc,gBAAgB,CAAC;AAE/B,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAE5B,cAAc,cAAc,CAAC;AAE7B,cAAc,YAAY,CAAC;AAC3B,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC;AACjC,cAAc,eAAe,CAAC;AAC9B,cAAc,gBAAgB,CAAC;AAE/B,cAAc,yBAAyB,CAAC;AACxC,cAAc,uBAAuB,CAAC;AACtC,cAAc,oBAAoB,CAAC;AAEnC,cAAc,eAAe,CAAC","file":"index.js","sourcesContent":["export * from './AreaChart';\nexport * from './BarChart';\nexport * from './LineChart';\nexport * from './ScatterChart';\n\nexport * from './PieChart';\nexport * from './RoseChart';\n\nexport * from './RadarChart';\n\nexport * from './MapChart';\nexport * from './HistogramChart';\nexport * from './WordCloudChart';\nexport * from './FunnelChart';\nexport * from './BoxPlotChart';\n\nexport * from './CircularProgressChart';\nexport * from './LinearProgressChart';\nexport * from './RangeColumnChart';\n\nexport * from './CommonChart';\n\nexport type { ChartOptions } from './BaseChart';\nexport type { IData, IChartSpec } from '@visactor/vchart';\n"]}
@@ -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);
@@ -1,3 +1,4 @@
1
1
  import { createComponent } from "./BaseComponent";
2
2
 
3
- export const Tooltip = createComponent("Tooltip", "tooltip", null, !0);
3
+ export const Tooltip = createComponent("Tooltip", "tooltip", null, !0);
4
+ //# sourceMappingURL=Tooltip.js.map
package/esm/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  export * from './charts';
2
2
  export * from './series';
3
3
  export * from './components';
4
- export { VChart } from './VChart';
4
+ export * from './VChart';
5
5
  import VChartCore from '@visactor/vchart';
6
6
  export { VChartCore };
package/esm/index.js CHANGED
@@ -4,7 +4,7 @@ export * from "./series";
4
4
 
5
5
  export * from "./components";
6
6
 
7
- export { VChart } from "./VChart";
7
+ export * from "./VChart";
8
8
 
9
9
  import VChartCore from "@visactor/vchart";
10
10
 
package/esm/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC;AAC7B,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAElC,OAAO,UAAU,MAAM,kBAAkB,CAAC;AAC1C,OAAO,EAAE,UAAU,EAAE,CAAC","file":"index.js","sourcesContent":["export * from './charts';\nexport * from './series';\nexport * from './components';\nexport { VChart } from './VChart';\n\nimport VChartCore from '@visactor/vchart';\nexport { VChartCore };\n"]}
1
+ {"version":3,"sources":["index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC;AAC7B,cAAc,UAAU,CAAC;AAEzB,OAAO,UAAU,MAAM,kBAAkB,CAAC;AAC1C,OAAO,EAAE,UAAU,EAAE,CAAC","file":"index.js","sourcesContent":["export * from './charts';\nexport * from './series';\nexport * from './components';\nexport * from './VChart';\n\nimport VChartCore from '@visactor/vchart';\nexport { VChartCore };\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visactor/react-vchart",
3
- "version": "1.1.0-beta.9",
3
+ "version": "1.1.1-beta.1",
4
4
  "description": "The react version of VChart 4.x",
5
5
  "keywords": [
6
6
  "react",
@@ -22,10 +22,10 @@
22
22
  "dist"
23
23
  ],
24
24
  "dependencies": {
25
- "@visactor/vchart": "1.1.0-beta.9",
25
+ "@visactor/vchart": "1.1.1-beta.1",
26
26
  "@visactor/vutils": "~0.13.3",
27
- "@visactor/vgrammar": "~0.4.1",
28
- "@visactor/vrender": "~0.13.2",
27
+ "@visactor/vgrammar": "~0.5.1",
28
+ "@visactor/vrender": "~0.13.4",
29
29
  "react-is": "^18.2.0"
30
30
  },
31
31
  "devDependencies": {
@@ -52,9 +52,9 @@
52
52
  "@types/node": "*",
53
53
  "@vitejs/plugin-react": "3.1.0",
54
54
  "vite": "3.2.6",
55
- "@internal/bundler": "0.0.1",
56
55
  "@internal/eslint-config": "0.0.1",
57
- "@internal/ts-config": "0.0.1"
56
+ "@internal/ts-config": "0.0.1",
57
+ "@internal/bundler": "0.0.1"
58
58
  },
59
59
  "peerDependencies": {
60
60
  "react": ">=16.0.0",