parent
cf4edceca6
commit
b25eb6742a
|
@ -10,6 +10,14 @@
|
|||
|
||||
---
|
||||
|
||||
## 2.0.0-beta.7
|
||||
|
||||
- 🐞 Fix the problem that Descriptions Item does not support v-for [#2793](https://github.com/vueComponent/ant-design-vue/issues/2793)
|
||||
- 🐞 Fix Modal button loading effect not working problem [9257c1](https://github.com/vueComponent/ant-design-vue/commit/9257c1ea685db4339239589153aee3189d0434fe)
|
||||
- 🐞 Fix the problem that the Steps component cannot be clicked when using v-model [ec7309](https://github.com/vueComponent/ant-design-vue/commit/ec73097d9b6ea8e2f2942ac28853c19191ca3298)
|
||||
- 🌟 Checkbox, Radio add event declaration
|
||||
- 🐞 Fix ts type error [802446](https://github.com/vueComponent/ant-design-vue/commit/8024469b8832cfc4fe85498b639bfb48820531aa)
|
||||
|
||||
## 2.0.0-beta.6
|
||||
|
||||
- 🐞 Fix the problem that TreeSelectNode subcomponent TreeSelectNode is not registered
|
||||
|
|
|
@ -10,6 +10,14 @@
|
|||
|
||||
---
|
||||
|
||||
## 2.0.0-beta.7
|
||||
|
||||
- 🐞 修复 Descriptions Item 不支持 v-for 问题 [#2793](https://github.com/vueComponent/ant-design-vue/issues/2793)
|
||||
- 🐞 修复 Modal button loading 效果不生效问题 [9257c1](https://github.com/vueComponent/ant-design-vue/commit/9257c1ea685db4339239589153aee3189d0434fe)
|
||||
- 🐞 修复 Steps 组件使用 v-model 时不可点击的问题 [ec7309](https://github.com/vueComponent/ant-design-vue/commit/ec73097d9b6ea8e2f2942ac28853c19191ca3298)
|
||||
- 🌟 Checkbox、Radio 添加事件声明
|
||||
- 🐞 修复 ts 类型错误 [802446](https://github.com/vueComponent/ant-design-vue/commit/8024469b8832cfc4fe85498b639bfb48820531aa)
|
||||
|
||||
## 2.0.0-beta.6
|
||||
|
||||
- 🐞 修复 TreeSelectNode 子组件 TreeSelectNode 没有注册的问题
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit a581157eaeca312744b551b7eda653f3059a9065
|
||||
Subproject commit 949baac19667bc35f99609ef9d57b919c6866cea
|
|
@ -1,121 +0,0 @@
|
|||
# break change
|
||||
|
||||
## global api
|
||||
|
||||
所有 dom 原生属性由驼峰改成全小写,涉及 API
|
||||
|
||||
####
|
||||
|
||||
maxLength -> maxlength tabIndex => tabindex readOnly => readonly autoComplete => autocomplete
|
||||
|
||||
## Tag
|
||||
|
||||
### CheckableTag
|
||||
|
||||
v-model -> v-model:checked
|
||||
|
||||
### Tag
|
||||
|
||||
v-model -> v-model:visible
|
||||
|
||||
移除 afterClose 属性
|
||||
|
||||
## Radio
|
||||
|
||||
radioGroup radio v-model -> v-model:value
|
||||
|
||||
## popconfirm
|
||||
|
||||
okButtonProps、cancelButtonProps 扁平化处理
|
||||
|
||||
v-model -> v-model:visible
|
||||
|
||||
## popover
|
||||
|
||||
v-model -> v-model:visible
|
||||
|
||||
## Tooltip
|
||||
|
||||
v-model -> v-model:visible
|
||||
|
||||
## Modal
|
||||
|
||||
v-model -> v-model:visible
|
||||
|
||||
okButtonProps、cancelButtonProps 扁平化处理
|
||||
|
||||
## Mentions
|
||||
|
||||
v-model -> v-model:value
|
||||
|
||||
## menu
|
||||
|
||||
v-model -> v-model:selectedKeys :openKeys.sync -> v-mdoel:openKeys
|
||||
|
||||
## dropdown
|
||||
|
||||
v-model -> v-model:visible
|
||||
|
||||
## Steps
|
||||
|
||||
v-model -> v-model:current
|
||||
|
||||
## checkbox
|
||||
|
||||
v-model -> v-model:checked
|
||||
|
||||
checkboxGroup
|
||||
|
||||
v-model -> v-model:value
|
||||
|
||||
## Switch
|
||||
|
||||
v-model -> v-model:checked
|
||||
|
||||
## tabs
|
||||
|
||||
v-model -> v-model:activeKey
|
||||
|
||||
renderTabBar({props, on, style, class}, DefaultTabBar) -> {DefaultTabBar, ...props} 多参数改成单参数并且扁平化处理
|
||||
|
||||
## card
|
||||
|
||||
tabList[{scopedSlots}] -> tabList[{slots}]
|
||||
|
||||
## rate
|
||||
|
||||
v-model -> v-model:value
|
||||
|
||||
## Collapse
|
||||
|
||||
v-model -> v-model:activeKey
|
||||
|
||||
## List
|
||||
|
||||
renderItem(item, index) => renderItem({item, index}) 该用单参数
|
||||
|
||||
## TreeSelect
|
||||
|
||||
treeData 中 scopedSlots => slots , v-model => v-model:value
|
||||
|
||||
## datePicker
|
||||
|
||||
dateRender
|
||||
|
||||
(current: moment.Moment, today: moment.Moment) => ({current: moment.Moment, today: moment.Moment})
|
||||
|
||||
monthCellContentRender (date, locale) => ({date, locale})
|
||||
|
||||
## table
|
||||
|
||||
customRender( text, record, index, column ); => customRender({ text, record, index, column });
|
||||
|
||||
expandedRowRender(record, index, indent, expanded) => expandedRowRender({ record, index, indent, expanded })
|
||||
|
||||
filterIcon(filtered, column) => filterIcon({ filtered, column })
|
||||
|
||||
## calendar
|
||||
|
||||
dateCellRender、dateFullCellRender、monthCellRender、monthFullCellRender
|
||||
|
||||
function (date, today?) => function({current, today?})
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "ant-design-vue",
|
||||
"version": "2.0.0-beta.6",
|
||||
"version": "2.0.0-beta.7",
|
||||
"title": "Ant Design Vue",
|
||||
"description": "An enterprise-class UI design language and Vue-based implementation",
|
||||
"keywords": [
|
||||
|
|
Loading…
Reference in New Issue