feat: progress status add `normal` type #254
parent
51ac45a537
commit
e450e9272f
|
@ -7,7 +7,7 @@
|
||||||
| gapPosition `(type=circle)` | the gap position, options: `top` `bottom` `left` `right` | string | `top` |
|
| gapPosition `(type=circle)` | the gap position, options: `top` `bottom` `left` `right` | string | `top` |
|
||||||
| 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` `active` | string | - |
|
| status | to set the status of the Progress, options: `normal` `success` `exception` `active` | string | `normal` |
|
||||||
| strokeWidth `(type=line)` | to set the width of the progress bar, unit: `px` | number | 10 |
|
| strokeWidth `(type=line)` | to set the width of the progress bar, unit: `px` | number | 10 |
|
||||||
| strokeWidth `(type=circle)` | to set the width of the circular progress bar, unit: percentage of the canvas width | number | 6 |
|
| strokeWidth `(type=circle)` | to set the width of the circular progress bar, unit: percentage of the canvas width | number | 6 |
|
||||||
| strokeLinecap | to set the style of the progress linecap | Enum{ 'round', 'square' } | `round` |
|
| strokeLinecap | to set the style of the progress linecap | Enum{ 'round', 'square' } | `round` |
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
| gapPosition `(type=circle)` | 圆形进度条缺口位置 | Enum{ 'top', 'bottom', 'left', 'right' } | `top` |
|
| gapPosition `(type=circle)` | 圆形进度条缺口位置 | Enum{ 'top', 'bottom', 'left', 'right' } | `top` |
|
||||||
| percent | 百分比 | number | 0 |
|
| percent | 百分比 | number | 0 |
|
||||||
| showInfo | 是否显示进度数值或状态图标 | boolean | true |
|
| showInfo | 是否显示进度数值或状态图标 | boolean | true |
|
||||||
| status | 状态,可选:`success` `exception` `active` | string | - |
|
| status | 状态,可选:`normal` `success` `exception` `active` | string | `normal` |
|
||||||
| strokeWidth `(type=line)` | 进度条线的宽度,单位 px | number | 10 |
|
| strokeWidth `(type=line)` | 进度条线的宽度,单位 px | number | 10 |
|
||||||
| strokeWidth `(type=circle)` | 圆形进度条线的宽度,单位是进度条画布宽度的百分比 | number | 6 |
|
| strokeWidth `(type=circle)` | 圆形进度条线的宽度,单位是进度条画布宽度的百分比 | number | 6 |
|
||||||
| strokeLinecap | | Enum{ 'round', 'square' } | `round` |
|
| strokeLinecap | | Enum{ 'round', 'square' } | `round` |
|
||||||
|
|
|
@ -23,7 +23,7 @@ export const ProgressProps = {
|
||||||
percent: PropTypes.number,
|
percent: PropTypes.number,
|
||||||
successPercent: PropTypes.number,
|
successPercent: PropTypes.number,
|
||||||
format: PropTypes.func,
|
format: PropTypes.func,
|
||||||
status: PropTypes.oneOf(['success', 'active', 'exception']),
|
status: PropTypes.oneOf(['normal', 'success', 'active', 'exception']),
|
||||||
showInfo: PropTypes.bool,
|
showInfo: PropTypes.bool,
|
||||||
strokeWidth: PropTypes.number,
|
strokeWidth: PropTypes.number,
|
||||||
strokeLinecap: PropTypes.oneOf(['round', 'square']),
|
strokeLinecap: PropTypes.oneOf(['round', 'square']),
|
||||||
|
|
Loading…
Reference in New Issue