@opentinyvue/vue-huicharts-ring 2.28.0 → 2.29.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/lib/index.js +4 -2
- package/package.json +4 -4
- package/src/ring.d.ts +1 -1
package/lib/index.js
CHANGED
|
@@ -199,7 +199,8 @@ var getDataOrSeries = function getDataOrSeries2(args) {
|
|
|
199
199
|
});
|
|
200
200
|
}
|
|
201
201
|
return levelFlag ? {
|
|
202
|
-
series
|
|
202
|
+
series,
|
|
203
|
+
data: getLimitData(innerData)
|
|
203
204
|
} : {
|
|
204
205
|
data: getLimitData(innerData)
|
|
205
206
|
};
|
|
@@ -277,7 +278,8 @@ var pie = function pie2(columns, rows, settings, extra, isRing) {
|
|
|
277
278
|
innerRows,
|
|
278
279
|
legendLimit,
|
|
279
280
|
level,
|
|
280
|
-
limitShowNum
|
|
281
|
+
limitShowNum,
|
|
282
|
+
innerData
|
|
281
283
|
});
|
|
282
284
|
var dataOrSeries = getDataOrSeries({
|
|
283
285
|
innerData,
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentinyvue/vue-huicharts-ring",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.29.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"module": "./lib/index.js",
|
|
7
7
|
"sideEffects": false,
|
|
8
8
|
"type": "module",
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@opentinyvue/vue-huicharts-core": "~2.
|
|
11
|
-
"@opentinyvue/vue-locale": "~2.
|
|
12
|
-
"@opentinyvue/vue-common": "~2.
|
|
10
|
+
"@opentinyvue/vue-huicharts-core": "~2.29.0",
|
|
11
|
+
"@opentinyvue/vue-locale": "~2.29.0",
|
|
12
|
+
"@opentinyvue/vue-common": "~2.29.0"
|
|
13
13
|
},
|
|
14
14
|
"license": "MIT",
|
|
15
15
|
"types": "index.d.ts",
|