win-chart 3.0.1 → 3.0.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/dist/cjs/index.cjs +0 -6
- package/dist/esm/index.js +2 -2
- package/dist/types/index.d.ts +4 -2
- package/package.json +1 -1
package/dist/cjs/index.cjs
CHANGED
|
@@ -27,8 +27,6 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
27
27
|
EarthChart: ()=>EarthChart_cjs_namespaceObject.EarthChart,
|
|
28
28
|
default: ()=>src,
|
|
29
29
|
echarts: ()=>external_echarts_namespaceObject,
|
|
30
|
-
IWinChartProps: ()=>index_cjs_namespaceObject.IWinChartProps,
|
|
31
|
-
IChartInfo: ()=>index_cjs_namespaceObject.IChartInfo,
|
|
32
30
|
WinChart: ()=>WinChart_cjs_namespaceObject.WinChart,
|
|
33
31
|
WinChartType: ()=>index_cjs_namespaceObject.WinChartType
|
|
34
32
|
});
|
|
@@ -38,16 +36,12 @@ const index_cjs_namespaceObject = require("./types/index.cjs");
|
|
|
38
36
|
const EarthChart_cjs_namespaceObject = require("./components/EarthChart.cjs");
|
|
39
37
|
const src = WinChart_cjs_namespaceObject.WinChart;
|
|
40
38
|
exports.EarthChart = __webpack_exports__.EarthChart;
|
|
41
|
-
exports.IChartInfo = __webpack_exports__.IChartInfo;
|
|
42
|
-
exports.IWinChartProps = __webpack_exports__.IWinChartProps;
|
|
43
39
|
exports.WinChart = __webpack_exports__.WinChart;
|
|
44
40
|
exports.WinChartType = __webpack_exports__.WinChartType;
|
|
45
41
|
exports["default"] = __webpack_exports__["default"];
|
|
46
42
|
exports.echarts = __webpack_exports__.echarts;
|
|
47
43
|
for(var __webpack_i__ in __webpack_exports__)if (-1 === [
|
|
48
44
|
"EarthChart",
|
|
49
|
-
"IChartInfo",
|
|
50
|
-
"IWinChartProps",
|
|
51
45
|
"WinChart",
|
|
52
46
|
"WinChartType",
|
|
53
47
|
"default",
|
package/dist/esm/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { WinChart } from "./components/WinChart.js";
|
|
2
|
-
import {
|
|
2
|
+
import { WinChartType } from "./types/index.js";
|
|
3
3
|
import { EarthChart } from "./components/EarthChart.js";
|
|
4
4
|
import * as __rspack_external_echarts from "echarts";
|
|
5
5
|
const src = WinChart;
|
|
6
|
-
export { EarthChart,
|
|
6
|
+
export { EarthChart, WinChart, WinChartType, src as default, __rspack_external_echarts as echarts };
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import * as echarts from 'echarts';
|
|
2
2
|
import { WinChart } from './components/WinChart';
|
|
3
|
-
import { WinChartType
|
|
3
|
+
import { WinChartType } from './types';
|
|
4
|
+
import type { IChartInfo, IWinChartProps } from './types';
|
|
4
5
|
import { EarthChart } from './components/EarthChart';
|
|
5
|
-
export { WinChart,
|
|
6
|
+
export { WinChart, WinChartType, echarts, EarthChart, };
|
|
7
|
+
export type { IWinChartProps, IChartInfo };
|
|
6
8
|
export default WinChart;
|