@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 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.28.0",
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.28.0",
11
- "@opentinyvue/vue-locale": "~2.28.0",
12
- "@opentinyvue/vue-common": "~2.28.0"
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",
package/src/ring.d.ts CHANGED
@@ -20,7 +20,7 @@
20
20
  */
21
21
  export declare const pie: (columns: any, rows: any, settings: any, extra: any, isRing: any) => {
22
22
  series: any;
23
- data?: undefined;
23
+ data: any;
24
24
  legend: {
25
25
  show: boolean;
26
26
  data?: undefined;