@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.
- package/cjs/charts/index.d.ts +18 -16
- package/cjs/charts/index.js +23 -145
- package/cjs/charts/index.js.map +1 -1
- package/cjs/components/Scrollbar.js +1 -2
- package/cjs/components/Tooltip.js +2 -1
- package/cjs/index.d.ts +1 -1
- package/cjs/index.js +2 -11
- package/cjs/index.js.map +1 -1
- package/esm/charts/index.d.ts +18 -16
- package/esm/charts/index.js +16 -16
- package/esm/charts/index.js.map +1 -1
- package/esm/components/Scrollbar.js +1 -2
- package/esm/components/Tooltip.js +2 -1
- package/esm/index.d.ts +1 -1
- package/esm/index.js +1 -1
- package/esm/index.js.map +1 -1
- package/package.json +6 -6
package/cjs/charts/index.d.ts
CHANGED
|
@@ -1,16 +1,18 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
3
|
-
export
|
|
4
|
-
export
|
|
5
|
-
export
|
|
6
|
-
export
|
|
7
|
-
export
|
|
8
|
-
export
|
|
9
|
-
export
|
|
10
|
-
export
|
|
11
|
-
export
|
|
12
|
-
export
|
|
13
|
-
export
|
|
14
|
-
export
|
|
15
|
-
export
|
|
16
|
-
export
|
|
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';
|
package/cjs/charts/index.js
CHANGED
|
@@ -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
|
-
}),
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
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
|
package/cjs/charts/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["charts/index.ts"],"names":[],"mappings":"
|
|
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
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 =
|
|
25
|
-
__exportStar(require("./
|
|
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,
|
|
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"]}
|
package/esm/charts/index.d.ts
CHANGED
|
@@ -1,16 +1,18 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
3
|
-
export
|
|
4
|
-
export
|
|
5
|
-
export
|
|
6
|
-
export
|
|
7
|
-
export
|
|
8
|
-
export
|
|
9
|
-
export
|
|
10
|
-
export
|
|
11
|
-
export
|
|
12
|
-
export
|
|
13
|
-
export
|
|
14
|
-
export
|
|
15
|
-
export
|
|
16
|
-
export
|
|
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';
|
package/esm/charts/index.js
CHANGED
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
export
|
|
1
|
+
export * from "./AreaChart";
|
|
2
2
|
|
|
3
|
-
export
|
|
3
|
+
export * from "./BarChart";
|
|
4
4
|
|
|
5
|
-
export
|
|
5
|
+
export * from "./LineChart";
|
|
6
6
|
|
|
7
|
-
export
|
|
7
|
+
export * from "./ScatterChart";
|
|
8
8
|
|
|
9
|
-
export
|
|
9
|
+
export * from "./PieChart";
|
|
10
10
|
|
|
11
|
-
export
|
|
11
|
+
export * from "./RoseChart";
|
|
12
12
|
|
|
13
|
-
export
|
|
13
|
+
export * from "./RadarChart";
|
|
14
14
|
|
|
15
|
-
export
|
|
15
|
+
export * from "./MapChart";
|
|
16
16
|
|
|
17
|
-
export
|
|
17
|
+
export * from "./HistogramChart";
|
|
18
18
|
|
|
19
|
-
export
|
|
19
|
+
export * from "./WordCloudChart";
|
|
20
20
|
|
|
21
|
-
export
|
|
21
|
+
export * from "./FunnelChart";
|
|
22
22
|
|
|
23
|
-
export
|
|
23
|
+
export * from "./BoxPlotChart";
|
|
24
24
|
|
|
25
|
-
export
|
|
25
|
+
export * from "./CircularProgressChart";
|
|
26
26
|
|
|
27
|
-
export
|
|
27
|
+
export * from "./LinearProgressChart";
|
|
28
28
|
|
|
29
|
-
export
|
|
29
|
+
export * from "./RangeColumnChart";
|
|
30
30
|
|
|
31
|
-
export
|
|
31
|
+
export * from "./CommonChart";
|
|
32
32
|
//# sourceMappingURL=index.js.map
|
package/esm/charts/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["charts/index.ts"],"names":[],"mappings":"AAAA,
|
|
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);
|
package/esm/index.d.ts
CHANGED
package/esm/index.js
CHANGED
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,
|
|
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.
|
|
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.
|
|
25
|
+
"@visactor/vchart": "1.1.1-beta.1",
|
|
26
26
|
"@visactor/vutils": "~0.13.3",
|
|
27
|
-
"@visactor/vgrammar": "~0.
|
|
28
|
-
"@visactor/vrender": "~0.13.
|
|
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",
|