release 2.1.4

pull/4072/head 2.1.4
tangjinzhou 4 years ago
parent 5917df205c
commit 726f6b4b2d

@ -10,6 +10,16 @@
---
## 2.1.4
`2021-05-09`
- 🐞 Fix `Table` scrolling misalignment issue [#4045](https://github.com/vueComponent/ant-design-vue/issues/4045)
- 🐞 Fix `Typography` editable mode triggering link jump issue [#4105](https://github.com/vueComponent/ant-design-vue/issues/4105)
- 🐞 Fix the issue that `Carousel` variableWidth does not take effect [#3977](https://github.com/vueComponent/ant-design-vue/issues/3977)
- 🐞 Fix the problem that `TreeSelect` cannot delete parent and child nodes at the same time through the keyboard [#3508](https://github.com/vueComponent/ant-design-vue/issues/3508)
- 🐞 Fix some types of errors
## 2.1.3
`2021-04-25`

@ -10,6 +10,16 @@
---
## 2.1.4
`2021-05-09`
- 🐞 修复 `Table` 滚动错位问题 [#4045](https://github.com/vueComponent/ant-design-vue/issues/4045)
- 🐞 修复 `Typography` editable 模式触发链接跳转问题 [#4105](https://github.com/vueComponent/ant-design-vue/issues/4105)
- 🐞 修复 `Carousel` variableWidth 不生效问题 [#3977](https://github.com/vueComponent/ant-design-vue/issues/3977)
- 🐞 修复 `TreeSelect` 无法通过键盘同时删除父子节点问题 [#3508](https://github.com/vueComponent/ant-design-vue/issues/3508)
- 🐞 修复若干类型错误问题
## 2.1.3
`2021-04-25`

@ -874,21 +874,25 @@ const Select = defineComponent({
},
onSearchInputKeyDown(event) {
const { _searchValue: searchValue, _valueList: valueList, _valueEntities: valueEntities } = this.$data;
const {
_searchValue: searchValue,
_valueList: valueList,
_valueEntities: valueEntities,
} = this.$data;
const { keyCode } = event;
if (KeyCode.BACKSPACE === keyCode && this.isMultiple() && !searchValue && valueList.length) {
let lastValue = valueList[valueList.length - 1].value;
const { treeCheckStrictly } = this.$props;
if(!treeCheckStrictly) {
if (!treeCheckStrictly) {
let cur = valueEntities[lastValue];
while(cur) {
if(valueList.some(j => j.value === cur.value)) {
while (cur) {
if (valueList.some(j => j.value === cur.value)) {
lastValue = cur.value;
cur = cur.parent;
}else{
cur = null
} else {
cur = null;
}
}
}

@ -1,6 +1,6 @@
{
"name": "ant-design-vue",
"version": "2.1.3",
"version": "2.1.4",
"title": "Ant Design Vue",
"description": "An enterprise-class UI design language and Vue-based implementation",
"keywords": [

@ -1 +1 @@
Subproject commit a7013ae87f69dcbcf547f4b023255b8a7a775557
Subproject commit 4da56dac85f43ad7a288951cbf09d860ecf93bb4
Loading…
Cancel
Save