From 34869eceb51f10e61d578d8444bf343d759070b6 Mon Sep 17 00:00:00 2001 From: tangjinzhou <415800467@qq.com> Date: Fri, 28 Jan 2022 10:31:23 +0800 Subject: [PATCH] release 3.0.0-beta.9 --- CHANGELOG.en-US.md | 13 +++++++++++++ CHANGELOG.zh-CN.md | 13 +++++++++++++ components/progress/index.en-US.md | 23 ++++++++++++----------- components/progress/index.zh-CN.md | 23 ++++++++++++----------- package.json | 2 +- 5 files changed, 51 insertions(+), 23 deletions(-) diff --git a/CHANGELOG.en-US.md b/CHANGELOG.en-US.md index cce1db24a..cd6f40378 100644 --- a/CHANGELOG.en-US.md +++ b/CHANGELOG.en-US.md @@ -10,6 +10,19 @@ --- +## 3.0.0-beta.9 + +`2022-01-28` + +🔥🔥🔥 Happy New Year 🔥🔥🔥 + +- 🌟 `Progress` add title attribute to avoid title being overwritten by internal title [#4929](https://github.com/vueComponent/ant-design-vue/issues/4929) +- 🐞 Fix `Input` focus state, style border issue [#5188](https://github.com/vueComponent/ant-design-vue/issues/5188) +- 🌟 Optimize the scrolling effect of virtual scrolling under mobile [#5191](https://github.com/vueComponent/ant-design-vue/issues/5191) +- 🐞 Fix the style issue of `Tree` component when dragging [6d4248](https://github.com/vueComponent/ant-design-vue/commit/6d4248d046a420aa6a1ddfeb78632e4405b91e51) +- 🐞 Fix `TreeSelect` when the content is empty, the Enter button fills the empty node problem [#5217](https://github.com/vueComponent/ant-design-vue/issues/5217) +- 🐞 Fix `Button` block style invalid after setting size [#5219](https://github.com/vueComponent/ant-design-vue/issues/5219) + ## 3.0.0-beta.8 `2022-01-21` diff --git a/CHANGELOG.zh-CN.md b/CHANGELOG.zh-CN.md index 1b582c368..a732a1c4c 100644 --- a/CHANGELOG.zh-CN.md +++ b/CHANGELOG.zh-CN.md @@ -10,6 +10,19 @@ --- +## 3.0.0-beta.9 + +`2022-01-28` + +🔥🔥🔥 新年快乐 🔥🔥🔥 + +- 🌟 `Progress` 添加 title 属性,避免 title 被内部 title 覆盖问题 [#4929](https://github.com/vueComponent/ant-design-vue/issues/4929) +- 🐞 修复 `Input` focus 状态时,样式边框问题 [#5188](https://github.com/vueComponent/ant-design-vue/issues/5188) +- 🌟 优化虚拟滚动在 mobile 下的滚动效果 [#5191](https://github.com/vueComponent/ant-design-vue/issues/5191) +- 🐞 修复 `Tree` 组件在拖拽时的样式问题 [6d4248](https://github.com/vueComponent/ant-design-vue/commit/6d4248d046a420aa6a1ddfeb78632e4405b91e51) +- 🐞 修复 `TreeSelect` 在空内容时,回车按键填充空节点问题 [#5217](https://github.com/vueComponent/ant-design-vue/issues/5217) +- 🐞 修复 `Button` 在设置 size 后,block 样式失效问题 [#5219](https://github.com/vueComponent/ant-design-vue/issues/5219) + ## 3.0.0-beta.8 `2022-01-21` diff --git a/components/progress/index.en-US.md b/components/progress/index.en-US.md index 6bf8f872f..a7a289191 100644 --- a/components/progress/index.en-US.md +++ b/components/progress/index.en-US.md @@ -18,17 +18,18 @@ If it will take a long time to complete an operation, you can use `Progress` to Properties that shared by all types. -| Property | Description | Type | Default | -| --- | --- | --- | --- | -| format | The template function of the content | function(percent, successPercent) | (percent) => percent + `%` | -| percent | To set the completion percentage | number | 0 | -| showInfo | Whether to display the progress value and the status icon | boolean | true | -| status | To set the status of the Progress, options: `success` `exception` `normal` `active`(line only) | string | - | -| strokeColor | The color of progress bar | string | - | -| strokeLinecap | To set the style of the progress linecap | `round` \| `square` | `round` | -| success | Configs of successfully progress bar | { percent: number, strokeColor: string } | - | -| trailColor | The color of unfilled part | string | - | -| type | To set the type, options: `line` `circle` `dashboard` | string | `line` | +| Property | Description | Type | Default | Version | +| --- | --- | --- | --- | --- | +| format | The template function of the content | function(percent, successPercent) | (percent) => percent + `%` | | +| percent | To set the completion percentage | number | 0 | | +| showInfo | Whether to display the progress value and the status icon | boolean | true | | +| status | To set the status of the Progress, options: `success` `exception` `normal` `active`(line only) | string | - | | +| strokeColor | The color of progress bar | string | - | | +| strokeLinecap | To set the style of the progress linecap | `round` \| `square` | `round` | | +| success | Configs of successfully progress bar | { percent: number, strokeColor: string } | - | | +| trailColor | The color of unfilled part | string | - | | +| type | To set the type, options: `line` `circle` `dashboard` | string | `line` | | +| title | html dom title | string | - | 3.0 | ### `type="line"` diff --git a/components/progress/index.zh-CN.md b/components/progress/index.zh-CN.md index 40eccf468..fda9c4f98 100644 --- a/components/progress/index.zh-CN.md +++ b/components/progress/index.zh-CN.md @@ -19,17 +19,18 @@ cover: https://gw.alipayobjects.com/zos/alicdn/xqsDu4ZyR/Progress.svg 各类型共用的属性。 -| 属性 | 说明 | 类型 | 默认值 | -| --- | --- | --- | --- | -| format | 内容的模板函数 | function(percent, successPercent) | (percent) => percent + `%` | -| percent | 百分比 | number | 0 | -| showInfo | 是否显示进度数值或状态图标 | boolean | true | -| status | 状态,可选:`success` `exception` `normal` `active`(仅限 line) | string | - | -| strokeColor | 进度条的色彩 | string | - | -| strokeLinecap | 进度条的样式 | `round` \| `square` | `round` | -| success | 成功进度条相关配置 | { percent: number, strokeColor: string } | - | -| trailColor | 未完成的分段的颜色 | string | - | -| type | 类型,可选 `line` `circle` `dashboard` | string | `line` | +| 属性 | 说明 | 类型 | 默认值 | 版本 | +| --- | --- | --- | --- | --- | +| format | 内容的模板函数 | function(percent, successPercent) | (percent) => percent + `%` | | +| percent | 百分比 | number | 0 | | +| showInfo | 是否显示进度数值或状态图标 | boolean | true | | +| status | 状态,可选:`success` `exception` `normal` `active`(仅限 line) | string | - | | +| strokeColor | 进度条的色彩 | string | - | | +| strokeLinecap | 进度条的样式 | `round` \| `square` | `round` | | +| success | 成功进度条相关配置 | { percent: number, strokeColor: string } | - | | +| trailColor | 未完成的分段的颜色 | string | - | | +| type | 类型,可选 `line` `circle` `dashboard` | string | `line` | | +| title | html 标签 title | string | - | 3.0 | ### `type="line"` diff --git a/package.json b/package.json index f75e0e9a0..dcd9390c7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ant-design-vue", - "version": "3.0.0-beta.8", + "version": "3.0.0-beta.9", "title": "Ant Design Vue", "description": "An enterprise-class UI design language and Vue-based implementation", "keywords": [