diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f0f5db93..88baf74da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # 更新日志 +## 2.2.1 + +- 修复 `` 多选时历史数据污染的问题 [#606](https://github.com/XiaoMi/hiui/issues/606) +- 修复 `` data 无法更新的问题 [#603](https://github.com/XiaoMi/hiui/issues/603) +- 修复 `` data 无法更新的问题 [#607](https://github.com/XiaoMi/hiui/issues/607) +- 修复 `` 组件销毁没有清空定时器的问题 [#624](https://github.com/XiaoMi/hiui/issues/624) +- 修复 `` onClose 失效的问题 [#627](https://github.com/XiaoMi/hiui/issues/627) +- 修复 `` 长度不够展示时间被遮挡的问题 [#615](https://github.com/XiaoMi/hiui/issues/615) +- 修复 `
` 动态渲染的时候 removeField 数量不正确的问题 [#636](https://github.com/XiaoMi/hiui/issues/636) + ## 2.2.0 - 新增 `` 走马灯组件 [#115](https://github.com/XiaoMi/hiui/issues/115) diff --git a/docs/zh-CN/components/dropdown.mdx b/docs/zh-CN/components/dropdown.mdx index 314674e06..3b4761417 100755 --- a/docs/zh-CN/components/dropdown.mdx +++ b/docs/zh-CN/components/dropdown.mdx @@ -44,7 +44,7 @@ import { Badge } from '@libs' | onClick | 点击后的回调 | (item: DataItem)=> void | - | - | | prefix | 前缀内容 | string \| ReactNode | - | - | | suffix | 后缀内容 | string \| ReactNode | - | - | -| trigger | 下拉菜单触发方式 | string \| string [] | 'click' \| 'contextmenu' \| 'hover' | 'click' | +| trigger | 下拉菜单触发方式 | string \| string [] | 'click' \| 'contextmenu' | 'click' | ## Type diff --git a/package.json b/package.json index eb81a22ac..5d3d9d787 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@hi-ui/hiui", - "version": "2.2.0", + "version": "2.2.1", "description": "HIUI for React", "scripts": { "test": "node_modules/.bin/standard && node_modules/.bin/stylelint --config .stylelintrc 'components/**/*.scss'",