@visactor/taro-vchart 2.0.7-alpha.7 → 2.0.7
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/Pie3dChart.js
CHANGED
|
@@ -4,9 +4,9 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: !0
|
|
5
5
|
}), exports.Pie3dChart = void 0;
|
|
6
6
|
|
|
7
|
-
const vchart_1 = require("@visactor/vchart"), generate_charts_1 = require("./generate-charts"), simple_1 = require("./registers/simple");
|
|
7
|
+
const vchart_1 = require("@visactor/vchart"), vchart_extension_1 = require("@visactor/vchart-extension"), generate_charts_1 = require("./generate-charts"), simple_1 = require("./registers/simple");
|
|
8
8
|
|
|
9
9
|
exports.Pie3dChart = (0, generate_charts_1.createChart)("Pie3dChart", {
|
|
10
10
|
chartConstructor: vchart_1.VChart
|
|
11
|
-
}, [
|
|
11
|
+
}, [ vchart_extension_1.registerPie3dChart, vchart_1.registerLabel, vchart_1.registerIndicator, ...simple_1.registers ]);
|
|
12
12
|
//# sourceMappingURL=Pie3dChart.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/charts/Pie3dChart.tsx"],"names":[],"mappings":";;;AAEA,
|
|
1
|
+
{"version":3,"sources":["../src/charts/Pie3dChart.tsx"],"names":[],"mappings":";;;AAEA,6CAA4E;AAC5E,iEAAiF;AACjF,uDAAgD;AAChD,+CAA+C;AAElC,QAAA,UAAU,GAAG,IAAA,6BAAW,EACnC,YAAY,EACZ;IACE,gBAAgB,EAAE,eAA4B;CAC/C,EACD,CAAC,qCAAkB,EAAE,sBAAa,EAAE,0BAAiB,EAAE,GAAG,kBAAS,CAAC,CACrE,CAAC","file":"Pie3dChart.js","sourcesContent":["import React from 'react';\nimport type { IVChartConstructor } from '@visactor/vchart';\nimport { VChart, registerLabel, registerIndicator } from '@visactor/vchart';\nimport { registerPie3dChart, IPie3dChartSpec } from '@visactor/vchart-extension';\nimport { createChart } from './generate-charts';\nimport { registers } from './registers/simple';\n\nexport const Pie3dChart = createChart<IPie3dChartSpec>(\n 'Pie3dChart',\n {\n chartConstructor: VChart as IVChartConstructor\n },\n [registerPie3dChart, registerLabel, registerIndicator, ...registers]\n);\n"]}
|
package/esm/charts/Pie3dChart.js
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
import { VChart,
|
|
1
|
+
import { VChart, registerLabel, registerIndicator } from "@visactor/vchart";
|
|
2
|
+
|
|
3
|
+
import { registerPie3dChart } from "@visactor/vchart-extension";
|
|
2
4
|
|
|
3
5
|
import { createChart } from "./generate-charts";
|
|
4
6
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/charts/Pie3dChart.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,MAAM,EAAE,
|
|
1
|
+
{"version":3,"sources":["../src/charts/Pie3dChart.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,MAAM,EAAE,aAAa,EAAE,iBAAiB,EAAE,MAAM,kBAAkB,CAAC;AAC5E,OAAO,EAAE,kBAAkB,EAAmB,MAAM,4BAA4B,CAAC;AACjF,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAChD,OAAO,EAAE,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAE/C,MAAM,CAAC,MAAM,UAAU,GAAG,WAAW,CACnC,YAAY,EACZ;IACE,gBAAgB,EAAE,MAA4B;CAC/C,EACD,CAAC,kBAAkB,EAAE,aAAa,EAAE,iBAAiB,EAAE,GAAG,SAAS,CAAC,CACrE,CAAC","file":"Pie3dChart.js","sourcesContent":["import React from 'react';\nimport type { IVChartConstructor } from '@visactor/vchart';\nimport { VChart, registerLabel, registerIndicator } from '@visactor/vchart';\nimport { registerPie3dChart, IPie3dChartSpec } from '@visactor/vchart-extension';\nimport { createChart } from './generate-charts';\nimport { registers } from './registers/simple';\n\nexport const Pie3dChart = createChart<IPie3dChartSpec>(\n 'Pie3dChart',\n {\n chartConstructor: VChart as IVChartConstructor\n },\n [registerPie3dChart, registerLabel, registerIndicator, ...registers]\n);\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visactor/taro-vchart",
|
|
3
|
-
"version": "2.0.7
|
|
3
|
+
"version": "2.0.7",
|
|
4
4
|
"description": "Taro VChart 图表组件",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"main": "esm/index.js",
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
},
|
|
33
33
|
"license": "MIT",
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@visactor/vchart": "2.0.7
|
|
36
|
-
"@visactor/vchart-extension": "2.0.7
|
|
35
|
+
"@visactor/vchart": "2.0.7",
|
|
36
|
+
"@visactor/vchart-extension": "2.0.7"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@rushstack/eslint-patch": "~1.1.4",
|
|
@@ -75,8 +75,8 @@
|
|
|
75
75
|
"tslib": "2.3.1",
|
|
76
76
|
"rimraf": "3.0.2",
|
|
77
77
|
"@internal/bundler": "0.0.1",
|
|
78
|
-
"@internal/
|
|
79
|
-
"@internal/
|
|
78
|
+
"@internal/ts-config": "0.0.1",
|
|
79
|
+
"@internal/eslint-config": "0.0.1"
|
|
80
80
|
},
|
|
81
81
|
"publishConfig": {
|
|
82
82
|
"access": "public",
|