From e78f96912b6c8f663ac76c9e5901672d1d529b12 Mon Sep 17 00:00:00 2001 From: Visiky <736929286@qq.com> Date: Wed, 21 Jul 2021 23:27:23 +0800 Subject: [PATCH] choreL: v2.3.27 (#2713) * chore: v2.3.27 & changelog close: https://github.com/antvis/G2Plot/issues/2663 * chore: update changelog * chore: update changelog & larger size-limit --- CHANGELOG.md | 20 ++++++++++++++++++++ package.json | 6 +++--- src/index.ts | 2 +- 3 files changed, 24 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a198093ee..f9ad19807d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,23 @@ +#### 2.3.27 (2021-07-21) + +##### Documentation Changes + +* **legend:** 图例 itemName, itemValue 增加 style 回调 ([#2712](https://github.com/antvis/g2plot/pull/2712)) ([1b039b0b8](https://github.com/antvis/G2Plot/commit/1b039b0b865dc84a01370c9f701b2c2a8792e23d)) + +##### Bug Fixes + +* **histogram:** binNumber 设置出错 ([#2708](https://github.com/antvis/g2plot/pull/2708)) ([46d27699](https://github.com/antvis/g2plot/commit/46d276995839610a3d0fc196eedd1b13366ecf47)) +* **percentage stacked column:** 修复 百分比堆叠分组柱状 展示不对 的问题 ([#2688](https://github.com/antvis/g2plot/pull/2688)) ([08e17224](https://github.com/antvis/g2plot/commit/08e1722474d36e0e038c398339d7502dc443a6de)) +* 修复 玉珏图没有考虑 isStack 的情况 重新计算最大值 ([#2685](https://github.com/antvis/g2plot/pull/2685)) ([397d8641](https://github.com/antvis/g2plot/commit/397d86415ce399ada0b23c2fd32ecd3a0a2f9e12)) +* **rose:** 玫瑰图 legend 默认配置,不进行 offset 偏移 ([#2683](https://github.com/antvis/g2plot/pull/2683)) ([86e23094](https://github.com/antvis/g2plot/commit/86e2309461e7627527f343039f674da1f0e0cb0c)) +* **bullet:** 修复子弹图 状态量 中 设置 fill 为渐变色时,报错 ([#791](https://github.com/antvis/g/pull/791)) ([70083c2d1](https://github.com/antvis/g/commit/70083c2d1454528f2534ba9c6bedf0345d6913ec)) +* **legend:** 修复图例容器大小无法设置问题 ([#2711](https://github.com/antvis/g2plot/pull/2711)) ([3fb32f087](https://github.com/antvis/g/commit/3fb32f0874dc71a2700e84c86e455fc005fbbad6)) + +##### Refactors + +* 函数命名修正 ([#2698](https://github.com/antvis/g2plot/pull/2698)) ([128de436](https://github.com/antvis/g2plot/commit/128de436f26c7fedcb930f491dc1054916e68c19)) +* 优化下玉珏图处理 stack 的代码 ([#2687](https://github.com/antvis/g2plot/pull/2687)) ([871b3c5f](https://github.com/antvis/g2plot/commit/3fb32f0874dc71a2700e84c86e455fc005fbbad6)) + #### 2.3.26 (2021-07-07) ##### Documentation Changes diff --git a/package.json b/package.json index d72edbc581..7e035cec33 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g2plot", - "version": "2.3.26", + "version": "2.3.27", "description": "An interactive and responsive charting library", "keywords": [ "chart", @@ -142,11 +142,11 @@ "limit-size": [ { "path": "dist/g2plot.min.js", - "limit": "925 Kb" + "limit": "950 Kb" }, { "path": "dist/g2plot.min.js", - "limit": "250 Kb", + "limit": "260 Kb", "gzip": true } ], diff --git a/src/index.ts b/src/index.ts index 3a54b5330b..f1a1fdbffe 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,4 +1,4 @@ -export const version = '2.3.26'; +export const version = '2.3.27'; // G2 自定义能力透出 import * as G2 from '@antv/g2';