Skip to content

Commit 0dcdd92

Browse files
committed
release 2.2.0-beta.3
1 parent 0cf37b3 commit 0dcdd92

File tree

6 files changed

+35
-5
lines changed

6 files changed

+35
-5
lines changed

CHANGELOG.en-US.md

+15
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,21 @@
1010

1111
---
1212

13+
## 2.2.0-beta.3
14+
15+
`2021-06-11`
16+
17+
- 🎉 Refactor Breadcrumb, Statistic, Tag components
18+
- 🌟 Statistic supports loading attribute
19+
- 🐞 Fix the problem of Menu rendering multiple sub-components to improve performance [6ae707](https://github.com/vueComponent/ant-design-vue/commit/6ae707edf508a9c5e8dca7dacf1410de5251bcf8)
20+
- 🐞 Fix FormItem custom class invalidation [617e53](https://github.com/vueComponent/ant-design-vue/commit/617e534fda2ae6d468b5e9d3eb43370f8a4b0000)
21+
- 🐞 Fix MenuDivider class error [#4195](https://github.com/vueComponent/ant-design-vue/issues/4195)
22+
- 🐞 Fix Tag and Image type errors
23+
- 🐞 Fix the issue of missing component animations such as Modal [#4191](https://github.com/vueComponent/ant-design-vue/issues/4191)
24+
- 🐞 Fix the issue that Select class cannot be dynamically updated [#4194](https://github.com/vueComponent/ant-design-vue/issues/4194)
25+
- 🐞 Fix the problem that the Dropdown mail expands and cannot be collapsed by clicking [#4198](https://github.com/vueComponent/ant-design-vue/issues/4198)
26+
- 🐞 Fix the issue of missing some export methods of FormItem [#4183](https://github.com/vueComponent/ant-design-vue/issues/4183)
27+
1328
## 2.2.0-beta.2
1429

1530
`2021-06-08`

CHANGELOG.zh-CN.md

+15
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,21 @@
1010

1111
---
1212

13+
## 2.2.0-beta.3
14+
15+
`2021-06-11`
16+
17+
- 🎉 重构 Breadcrumb、Statistic、Tag 组件
18+
- 🌟 Statistic 支持 loading 属性
19+
- 🐞 修复 Menu 渲染多次子组件问题,提升性能 [6ae707](https://github.com/vueComponent/ant-design-vue/commit/6ae707edf508a9c5e8dca7dacf1410de5251bcf8)
20+
- 🐞 修复 FormItem 自定义 class 失效 [617e53](https://github.com/vueComponent/ant-design-vue/commit/617e534fda2ae6d468b5e9d3eb43370f8a4b0000)
21+
- 🐞 修复 MenuDivider class 错误问题 [#4195](https://github.com/vueComponent/ant-design-vue/issues/4195)
22+
- 🐞 修复 Tag、Image 类型错误
23+
- 🐞 修复 Modal 等组件动画丢失问题 [#4191](https://github.com/vueComponent/ant-design-vue/issues/4191)
24+
- 🐞 修复 Select class 不能动态更新问题 [#4194](https://github.com/vueComponent/ant-design-vue/issues/4194)
25+
- 🐞 修复 Dropdown 邮件展开,不能点击收起的问题 [#4198](https://github.com/vueComponent/ant-design-vue/issues/4198)
26+
- 🐞 修复 FormItem 缺少部分导出方法问题 [#4183](https://github.com/vueComponent/ant-design-vue/issues/4183)
27+
1328
## 2.2.0-beta.2
1429

1530
`2021-06-08`

components/form/ErrorList.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export default defineComponent({
2121
const { prefixCls, status } = useInjectFormItemPrefix();
2222
const visible = ref(!!(props.errors && props.errors.length));
2323
const innerStatus = ref(status.value);
24-
let timeout = ref();
24+
const timeout = ref();
2525
const cacheErrors = ref([...props.errors]);
2626
watch([() => [...props.errors], () => props.help], newValues => {
2727
window.clearTimeout(timeout.value);

components/statistic/Countdown.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export default defineComponent({
4343

4444
const stopTimer = () => {
4545
const { value } = props;
46-
if (countdownId) {
46+
if (countdownId.value) {
4747
clearInterval(countdownId.value);
4848
countdownId.value = undefined;
4949

components/vc-overflow/Overflow.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ const Overflow = defineComponent({
131131
});
132132

133133
const omittedItems = computed(() => {
134-
if (isResponsive) {
134+
if (isResponsive.value) {
135135
return props.data.slice(mergedDisplayCount.value + 1);
136136
}
137137
return props.data.slice(mergedData.value.length);
@@ -362,7 +362,7 @@ const Overflow = defineComponent({
362362
<Item
363363
{...itemSharedProps}
364364
order={mergedDisplayCount.value}
365-
class={`${itemPrefixCls}-suffix`}
365+
class={`${itemPrefixCls.value}-suffix`}
366366
registerSize={registerSuffixSize}
367367
display
368368
style={suffixStyle}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ant-design-vue",
3-
"version": "2.2.0-beta.2",
3+
"version": "2.2.0-beta.3",
44
"title": "Ant Design Vue",
55
"description": "An enterprise-class UI design language and Vue-based implementation",
66
"keywords": [

0 commit comments

Comments
 (0)