parent
23624679fe
commit
34869eceb5
|
@ -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
|
## 3.0.0-beta.8
|
||||||
|
|
||||||
`2022-01-21`
|
`2022-01-21`
|
||||||
|
|
|
@ -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
|
## 3.0.0-beta.8
|
||||||
|
|
||||||
`2022-01-21`
|
`2022-01-21`
|
||||||
|
|
|
@ -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.
|
Properties that shared by all types.
|
||||||
|
|
||||||
| Property | Description | Type | Default |
|
| Property | Description | Type | Default | Version |
|
||||||
| --- | --- | --- | --- |
|
| --- | --- | --- | --- | --- |
|
||||||
| format | The template function of the content | function(percent, successPercent) | (percent) => percent + `%` |
|
| format | The template function of the content | function(percent, successPercent) | (percent) => percent + `%` | |
|
||||||
| percent | To set the completion percentage | number | 0 |
|
| percent | To set the completion percentage | number | 0 | |
|
||||||
| showInfo | Whether to display the progress value and the status icon | boolean | true |
|
| 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 | - |
|
| status | To set the status of the Progress, options: `success` `exception` `normal` `active`(line only) | string | - | |
|
||||||
| strokeColor | The color of progress bar | string | - |
|
| strokeColor | The color of progress bar | string | - | |
|
||||||
| strokeLinecap | To set the style of the progress linecap | `round` \| `square` | `round` |
|
| strokeLinecap | To set the style of the progress linecap | `round` \| `square` | `round` | |
|
||||||
| success | Configs of successfully progress bar | { percent: number, strokeColor: string } | - |
|
| success | Configs of successfully progress bar | { percent: number, strokeColor: string } | - | |
|
||||||
| trailColor | The color of unfilled part | string | - |
|
| trailColor | The color of unfilled part | string | - | |
|
||||||
| type | To set the type, options: `line` `circle` `dashboard` | string | `line` |
|
| type | To set the type, options: `line` `circle` `dashboard` | string | `line` | |
|
||||||
|
| title | html dom title | string | - | 3.0 |
|
||||||
|
|
||||||
### `type="line"`
|
### `type="line"`
|
||||||
|
|
||||||
|
|
|
@ -19,17 +19,18 @@ cover: https://gw.alipayobjects.com/zos/alicdn/xqsDu4ZyR/Progress.svg
|
||||||
|
|
||||||
各类型共用的属性。
|
各类型共用的属性。
|
||||||
|
|
||||||
| 属性 | 说明 | 类型 | 默认值 |
|
| 属性 | 说明 | 类型 | 默认值 | 版本 |
|
||||||
| --- | --- | --- | --- |
|
| --- | --- | --- | --- | --- |
|
||||||
| format | 内容的模板函数 | function(percent, successPercent) | (percent) => percent + `%` |
|
| format | 内容的模板函数 | function(percent, successPercent) | (percent) => percent + `%` | |
|
||||||
| percent | 百分比 | number | 0 |
|
| percent | 百分比 | number | 0 | |
|
||||||
| showInfo | 是否显示进度数值或状态图标 | boolean | true |
|
| showInfo | 是否显示进度数值或状态图标 | boolean | true | |
|
||||||
| status | 状态,可选:`success` `exception` `normal` `active`(仅限 line) | string | - |
|
| status | 状态,可选:`success` `exception` `normal` `active`(仅限 line) | string | - | |
|
||||||
| strokeColor | 进度条的色彩 | string | - |
|
| strokeColor | 进度条的色彩 | string | - | |
|
||||||
| strokeLinecap | 进度条的样式 | `round` \| `square` | `round` |
|
| strokeLinecap | 进度条的样式 | `round` \| `square` | `round` | |
|
||||||
| success | 成功进度条相关配置 | { percent: number, strokeColor: string } | - |
|
| success | 成功进度条相关配置 | { percent: number, strokeColor: string } | - | |
|
||||||
| trailColor | 未完成的分段的颜色 | string | - |
|
| trailColor | 未完成的分段的颜色 | string | - | |
|
||||||
| type | 类型,可选 `line` `circle` `dashboard` | string | `line` |
|
| type | 类型,可选 `line` `circle` `dashboard` | string | `line` | |
|
||||||
|
| title | html 标签 title | string | - | 3.0 |
|
||||||
|
|
||||||
### `type="line"`
|
### `type="line"`
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "ant-design-vue",
|
"name": "ant-design-vue",
|
||||||
"version": "3.0.0-beta.8",
|
"version": "3.0.0-beta.9",
|
||||||
"title": "Ant Design Vue",
|
"title": "Ant Design Vue",
|
||||||
"description": "An enterprise-class UI design language and Vue-based implementation",
|
"description": "An enterprise-class UI design language and Vue-based implementation",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
|
Loading…
Reference in New Issue