@opentinyvue/vue-huicharts-ring 3.28.0 → 3.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
@@ -203,7 +203,8 @@ var getDataOrSeries = function getDataOrSeries2(args) {
203
203
  });
204
204
  }
205
205
  return levelFlag ? {
206
- series
206
+ series,
207
+ data: getLimitData(innerData)
207
208
  } : {
208
209
  data: getLimitData(innerData)
209
210
  };
@@ -281,7 +282,8 @@ var pie = function pie2(columns, rows, settings, extra, isRing) {
281
282
  innerRows,
282
283
  legendLimit,
283
284
  level,
284
- limitShowNum
285
+ limitShowNum,
286
+ innerData
285
287
  });
286
288
  var dataOrSeries = getDataOrSeries({
287
289
  innerData,
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@opentinyvue/vue-huicharts-ring",
3
- "version": "3.28.0",
3
+ "version": "3.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": "~3.28.0",
11
- "@opentinyvue/vue-locale": "~3.28.0",
12
- "@opentinyvue/vue-common": "~3.28.0"
10
+ "@opentinyvue/vue-huicharts-core": "~3.29.0",
11
+ "@opentinyvue/vue-locale": "~3.29.0",
12
+ "@opentinyvue/vue-common": "~3.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;