Skip to content

Commit 34869ec

Browse files
committed
release 3.0.0-beta.9
1 parent 2362467 commit 34869ec

File tree

5 files changed

+51
-23
lines changed

5 files changed

+51
-23
lines changed

CHANGELOG.en-US.md

+13
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,19 @@
1010

1111
---
1212

13+
## 3.0.0-beta.9
14+
15+
`2022-01-28`
16+
17+
🔥🔥🔥 Happy New Year 🔥🔥🔥
18+
19+
- 🌟 `Progress` add title attribute to avoid title being overwritten by internal title [#4929](https://github.com/vueComponent/ant-design-vue/issues/4929)
20+
- 🐞 Fix `Input` focus state, style border issue [#5188](https://github.com/vueComponent/ant-design-vue/issues/5188)
21+
- 🌟 Optimize the scrolling effect of virtual scrolling under mobile [#5191](https://github.com/vueComponent/ant-design-vue/issues/5191)
22+
- 🐞 Fix the style issue of `Tree` component when dragging [6d4248](https://github.com/vueComponent/ant-design-vue/commit/6d4248d046a420aa6a1ddfeb78632e4405b91e51)
23+
- 🐞 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)
24+
- 🐞 Fix `Button` block style invalid after setting size [#5219](https://github.com/vueComponent/ant-design-vue/issues/5219)
25+
1326
## 3.0.0-beta.8
1427

1528
`2022-01-21`

CHANGELOG.zh-CN.md

+13
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,19 @@
1010

1111
---
1212

13+
## 3.0.0-beta.9
14+
15+
`2022-01-28`
16+
17+
🔥🔥🔥 新年快乐 🔥🔥🔥
18+
19+
- 🌟 `Progress` 添加 title 属性,避免 title 被内部 title 覆盖问题 [#4929](https://github.com/vueComponent/ant-design-vue/issues/4929)
20+
- 🐞 修复 `Input` focus 状态时,样式边框问题 [#5188](https://github.com/vueComponent/ant-design-vue/issues/5188)
21+
- 🌟 优化虚拟滚动在 mobile 下的滚动效果 [#5191](https://github.com/vueComponent/ant-design-vue/issues/5191)
22+
- 🐞 修复 `Tree` 组件在拖拽时的样式问题 [6d4248](https://github.com/vueComponent/ant-design-vue/commit/6d4248d046a420aa6a1ddfeb78632e4405b91e51)
23+
- 🐞 修复 `TreeSelect` 在空内容时,回车按键填充空节点问题 [#5217](https://github.com/vueComponent/ant-design-vue/issues/5217)
24+
- 🐞 修复 `Button` 在设置 size 后,block 样式失效问题 [#5219](https://github.com/vueComponent/ant-design-vue/issues/5219)
25+
1326
## 3.0.0-beta.8
1427

1528
`2022-01-21`

components/progress/index.en-US.md

+12-11
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,18 @@ If it will take a long time to complete an operation, you can use `Progress` to
1818

1919
Properties that shared by all types.
2020

21-
| Property | Description | Type | Default |
22-
| --- | --- | --- | --- |
23-
| format | The template function of the content | function(percent, successPercent) | (percent) => percent + `%` |
24-
| percent | To set the completion percentage | number | 0 |
25-
| showInfo | Whether to display the progress value and the status icon | boolean | true |
26-
| status | To set the status of the Progress, options: `success` `exception` `normal` `active`(line only) | string | - |
27-
| strokeColor | The color of progress bar | string | - |
28-
| strokeLinecap | To set the style of the progress linecap | `round` \| `square` | `round` |
29-
| success | Configs of successfully progress bar | { percent: number, strokeColor: string } | - |
30-
| trailColor | The color of unfilled part | string | - |
31-
| type | To set the type, options: `line` `circle` `dashboard` | string | `line` |
21+
| Property | Description | Type | Default | Version |
22+
| --- | --- | --- | --- | --- |
23+
| format | The template function of the content | function(percent, successPercent) | (percent) => percent + `%` | |
24+
| percent | To set the completion percentage | number | 0 | |
25+
| showInfo | Whether to display the progress value and the status icon | boolean | true | |
26+
| status | To set the status of the Progress, options: `success` `exception` `normal` `active`(line only) | string | - | |
27+
| strokeColor | The color of progress bar | string | - | |
28+
| strokeLinecap | To set the style of the progress linecap | `round` \| `square` | `round` | |
29+
| success | Configs of successfully progress bar | { percent: number, strokeColor: string } | - | |
30+
| trailColor | The color of unfilled part | string | - | |
31+
| type | To set the type, options: `line` `circle` `dashboard` | string | `line` | |
32+
| title | html dom title | string | - | 3.0 |
3233

3334
### `type="line"`
3435

components/progress/index.zh-CN.md

+12-11
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,18 @@ cover: https://gw.alipayobjects.com/zos/alicdn/xqsDu4ZyR/Progress.svg
1919

2020
各类型共用的属性。
2121

22-
| 属性 | 说明 | 类型 | 默认值 |
23-
| --- | --- | --- | --- |
24-
| format | 内容的模板函数 | function(percent, successPercent) | (percent) => percent + `%` |
25-
| percent | 百分比 | number | 0 |
26-
| showInfo | 是否显示进度数值或状态图标 | boolean | true |
27-
| status | 状态,可选:`success` `exception` `normal` `active`(仅限 line) | string | - |
28-
| strokeColor | 进度条的色彩 | string | - |
29-
| strokeLinecap | 进度条的样式 | `round` \| `square` | `round` |
30-
| success | 成功进度条相关配置 | { percent: number, strokeColor: string } | - |
31-
| trailColor | 未完成的分段的颜色 | string | - |
32-
| type | 类型,可选 `line` `circle` `dashboard` | string | `line` |
22+
| 属性 | 说明 | 类型 | 默认值 | 版本 |
23+
| --- | --- | --- | --- | --- |
24+
| format | 内容的模板函数 | function(percent, successPercent) | (percent) => percent + `%` | |
25+
| percent | 百分比 | number | 0 | |
26+
| showInfo | 是否显示进度数值或状态图标 | boolean | true | |
27+
| status | 状态,可选:`success` `exception` `normal` `active`(仅限 line) | string | - | |
28+
| strokeColor | 进度条的色彩 | string | - | |
29+
| strokeLinecap | 进度条的样式 | `round` \| `square` | `round` | |
30+
| success | 成功进度条相关配置 | { percent: number, strokeColor: string } | - | |
31+
| trailColor | 未完成的分段的颜色 | string | - | |
32+
| type | 类型,可选 `line` `circle` `dashboard` | string | `line` | |
33+
| title | html 标签 title | string | - | 3.0 |
3334

3435
### `type="line"`
3536

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ant-design-vue",
3-
"version": "3.0.0-beta.8",
3+
"version": "3.0.0-beta.9",
44
"title": "Ant Design Vue",
55
"description": "An enterprise-class UI design language and Vue-based implementation",
66
"keywords": [

0 commit comments

Comments
 (0)