mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-30 06:09:34 +08:00
f37f471373
* feat: expand rate character * fix: demo * fix: snap * Update components/rate/index.zh-CN.md Co-authored-by: 偏右 <afc163@gmail.com> * fix Co-authored-by: 偏右 <afc163@gmail.com>
1.4 KiB
1.4 KiB
category | subtitle | type | title | cover |
---|---|---|---|---|
Components | 评分 | 数据录入 | Rate | https://gw.alipayobjects.com/zos/alicdn/R5uiIWmxe/Rate.svg |
评分组件。
何时使用
- 对评价进行展示。
- 对事物进行快速的评级操作。
API
属性 | 说明 | 类型 | 默认值 | 版本 |
---|---|---|---|---|
allowClear | 是否允许再次点击后清除 | boolean | true | |
allowHalf | 是否允许半选 | boolean | false | |
autoFocus | 自动获取焦点 | boolean | false | |
character | 自定义字符 | ReactNode | ({ index }) => ReactNode | <StarFilled /> |
Function(): 4.4.0 |
className | 自定义样式类名 | string | ||
count | star 总数 | number | 5 | |
defaultValue | 默认值 | number | 0 | |
disabled | 只读,无法进行交互 | boolean | false | |
style | 自定义样式对象 | CSSProperties | ||
tooltips | 自定义每项的提示信息 | string[] | ||
value | 当前数,受控值 | number | ||
onBlur | 失去焦点时的回调 | Function() | ||
onChange | 选择时的回调 | Function(value: number) | ||
onFocus | 获取焦点时的回调 | Function() | ||
onHoverChange | 鼠标经过时数值变化的回调 | Function(value: number) | ||
onKeyDown | 按键回调 | Function(event) |
方法
名称 | 描述 |
---|---|
blur() | 移除焦点 |
focus() | 获取焦点 |