Skip to content

Commit 2cfc6cc

Browse files
committed
release 2.2.0-beta.1
1 parent 62ca3a9 commit 2cfc6cc

File tree

6 files changed

+73
-5
lines changed

6 files changed

+73
-5
lines changed

CHANGELOG.en-US.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,35 @@
1010

1111
---
1212

13+
## 2.2.0-beta.1
14+
15+
`2021-06-17`
16+
17+
- 🔥🔥🔥 Virtual Table independent library released https://www.npmjs.com/package/@surely-vue/table, this component is an independent library, the document example is not yet complete, it is a completely ts-developed component , There are good type hints, there are API documents on npm, those who are in a hurry can explore and use it, here is an online experience example, https://store.antdv.com/pro/preview/list/big- table-list
18+
- 🔥🔥🔥 Refactored a large number of components, the source code is more readable, the performance is better, and the ts type is more comprehensive -Refactored components in this version Anchor, Alert, Avatar, Badge, BackTop, Col, Form, Layout, Menu, Space, Spin, Switch, Row, Result, Rate
19+
- 🎉 Menu
20+
21+
- Better performance [#3300](https://github.com/vueComponent/ant-design-vue/issues/3300)
22+
- Fix the problem of incorrect highlighting [#4053](https://github.com/vueComponent/ant-design-vue/issues/4053)
23+
- Fix console invalid warning [#4169](https://github.com/vueComponent/ant-design-vue/issues/4169)
24+
- Easier to use, simpler to use single file recursion [#4133](https://github.com/vueComponent/ant-design-vue/issues/4133)
25+
- 💄 icon icon needs to be passed through slot
26+
27+
- Skeleton
28+
29+
- 🌟 Support Skeleton.Avatar placeholder component.
30+
- 🌟 Support Skeleton.Button placeholder component.
31+
- 🌟 Support Skeleton.Input placeholder component.
32+
33+
- 💄 Destructive update
34+
35+
- The `a-menu-item` and `a-sub-menu` icons need to be passed through the slot, and the icon is not automatically obtained through the sub-node
36+
- row gutter supports row-wrap, no need to use multiple rows to divide col
37+
38+
- 🐞 Fix AutoComplete filterOptions not taking effect [#4170](https://github.com/vueComponent/ant-design-vue/issues/4170)
39+
- 🐞 Fix Select automatic width invalidation problem [#4118](https://github.com/vueComponent/ant-design-vue/issues/4118)
40+
- 🐞 Fix the lack of internationalized files in dist [#3684](https://github.com/vueComponent/ant-design-vue/issues/3684)
41+
1342
## 2.1.6
1443

1544
`2021-05-13`

CHANGELOG.zh-CN.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,36 @@
1010

1111
---
1212

13+
## 2.2.0-beta.1
14+
15+
`2021-06-17`
16+
17+
- 🔥🔥🔥 虚拟 Table 独立库发布 https://www.npmjs.com/package/@surely-vue/table , 该组件是一个独立的库,目前文档示例尚未完善,他是一个完全 ts 开发的组件,有较好的类型提示,npm 上已有 API 文档,着急使用的的可以摸索着用起来了,这里有个在线体验示例,https://store.antdv.com/pro/preview/list/big-table-list
18+
- 🔥🔥🔥 重构大量组件,源码更加易读,性能更优,ts 类型更加全面
19+
- 本版本重构组件 Anchor、Alert、Avatar、Badge、BackTop、Col、Form、Layout、Menu、Space、Spin、Switch、Row、Result、Rate
20+
- 🎉 Menu
21+
22+
- 性能更优 [#3300](https://github.com/vueComponent/ant-design-vue/issues/3300)
23+
- 修复高亮不正确问题 [#4053](https://github.com/vueComponent/ant-design-vue/issues/4053)
24+
- 修复控制台无效 warning [#4169](https://github.com/vueComponent/ant-design-vue/issues/4169)
25+
- 更加易用,更加简单的使用单文件递归 [#4133](https://github.com/vueComponent/ant-design-vue/issues/4133)
26+
- 💄 图标 icon 需要通过 slot 传递
27+
28+
- Skeleton
29+
30+
- 🌟 支持 Skeleton.Avatar 占位组件。
31+
- 🌟 支持 Skeleton.Button 占位组件。
32+
- 🌟 支持 Skeleton.Input 占位组件。
33+
34+
- 💄 破坏性更新
35+
36+
- a-menu-item、a-sub-menu 图标需要通过 slot 传递,不在通过子节点自动获取图标
37+
- row gutter 支持 row-wrap, 无需使用多个 row 划分 col
38+
39+
- 🐞 修复 AutoComplete filterOptions 不生效问题 [#4170](https://github.com/vueComponent/ant-design-vue/issues/4170)
40+
- 🐞 修复 Select 自动宽度失效问题 [#4118](https://github.com/vueComponent/ant-design-vue/issues/4118)
41+
- 🐞 修复 dist 缺少国际化文件问题 [#3684](https://github.com/vueComponent/ant-design-vue/issues/3684)
42+
1343
## 2.1.6
1444

1545
`2021-05-13`

antd-tools/gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ gulp.task(
294294

295295
function publish(tagString, done) {
296296
let args = ['publish', '--with-antd-tools'];
297-
args = args.concat(['--tag', 'next']);
297+
// args = args.concat(['--tag', 'next']);
298298
if (tagString) {
299299
args = args.concat(['--tag', tagString]);
300300
}

components/menu/style/index.less

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,15 @@
4040
list-style: none;
4141
}
4242

43+
// Overflow ellipsis
44+
&-overflow {
45+
display: flex;
46+
47+
&-item {
48+
flex: none;
49+
}
50+
}
51+
4352
&-hidden,
4453
&-submenu-hidden {
4554
display: none;

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ant-design-vue",
3-
"version": "2.1.6",
3+
"version": "2.2.0-beta.1",
44
"title": "Ant Design Vue",
55
"description": "An enterprise-class UI design language and Vue-based implementation",
66
"keywords": [
@@ -89,7 +89,7 @@
8989
"@typescript-eslint/parser": "^4.1.0",
9090
"@vue/babel-plugin-jsx": "^1.0.0",
9191
"@vue/cli-plugin-eslint": "^4.0.0",
92-
"@vue/compiler-sfc": "3.0.10",
92+
"@vue/compiler-sfc": "^3.0.9",
9393
"@vue/eslint-config-prettier": "^6.0.0",
9494
"@vue/eslint-config-typescript": "^7.0.0",
9595
"@vue/test-utils": "^2.0.0-0",
@@ -179,7 +179,7 @@
179179
"umi-mock-middleware": "^1.0.0",
180180
"umi-request": "^1.3.5",
181181
"url-loader": "^3.0.0",
182-
"vue": "3.0.10",
182+
"vue": "^3.0.9",
183183
"vue-antd-md-loader": "^1.2.1-beta.1",
184184
"vue-clipboard2": "0.3.1",
185185
"vue-draggable-resizable": "^2.1.0",

0 commit comments

Comments
 (0)