Skip to content

Commit 3791cfc

Browse files
committed
release 3.0.0-beta.1
1 parent c6ab969 commit 3791cfc

File tree

4 files changed

+53
-3
lines changed

4 files changed

+53
-3
lines changed

CHANGELOG.en-US.md

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

1111
---
1212

13+
## 3.0.0-beta.1
14+
15+
`2021-12-24`
16+
17+
- 🌟 Refactor the InputNumber component, add new attributes: `bordered` `controls` `keyboard` `stringMode`, slot: `addonAfter` `addonBefore`, event: `step`, please refer to InputNumber API description for details
18+
- 🌟 Add global.d.ts type file to facilitate volar recognition [#5067](https://github.com/vueComponent/ant-design-vue/issues/5067)
19+
- 🐞 Fix web-type.json missing issue [#4860](https://github.com/vueComponent/ant-design-vue/issues/4860) -Tabs
20+
21+
- 🌟 Tabs collapsed node added delete function
22+
- 🐞 Tabs special scene not activated option issue [#5056](https://github.com/vueComponent/ant-design-vue/issues/5056)
23+
- 🐞 Fix the problem of the default export TabPane component name error [b645f8](https://github.com/vueComponent/ant-design-vue/commit/b645f827d0e13d60bc01c740ae8cbc8f61cf2cdf)
24+
25+
- Form
26+
27+
- 🌟 7 new usage examples added to the document
28+
- 🌟 New FormInstance type export
29+
- 🌟 No need to specify the type when verifying the Number type [#5064](https://github.com/vueComponent/ant-design-vue/issues/5064)
30+
- 🐞 Roll back the automatic verification feature when FormItem is actively assigned. This scenario should not be automatically verified [#5056](https://github.com/vueComponent/ant-design-vue/issues/5056)
31+
- 🐞 Fix validateMessages error problem
32+
33+
- 🌟 Optimize the basic components of the virtual list and improve the performance of Tree, TreeSelect, and Select [4e70c6](https://github.com/vueComponent/ant-design-vue/commit/4e70c6dd775254ae713d8633db2d0363027708e1) [#5069](https://github. com/vueComponent/ant-design-vue/issues/5069)
34+
- 🐞 Fix the stuttering problem when Tree expands [#5069](https://github.com/vueComponent/ant-design-vue/issues/5069)
35+
- 🐞 Fix the issue that Input is not updated when reset to undefined
36+
1337
## 3.0.0-alpha.16
1438

1539
`2021-12-19`

CHANGELOG.zh-CN.md

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

1111
---
1212

13+
## 3.0.0-beta.1
14+
15+
`2021-12-24`
16+
17+
- 🌟 重构 InputNumber 组件,新增属性: `bordered` `controls` `keyboard` `stringMode`, 插槽: `addonAfter` `addonBefore`, 事件:`step`,具体请查看 InputNumber API 说明
18+
- 🌟 添加 global.d.ts 类型文件,方便 volar 识别 [#5067](https://github.com/vueComponent/ant-design-vue/issues/5067)
19+
- 🐞 修复 web-type.json 丢失问题 [#4860](https://github.com/vueComponent/ant-design-vue/issues/4860)
20+
- Tabs
21+
22+
- 🌟 Tabs 折叠节点新增删除功能
23+
- 🐞 Tabs 特殊场景未激活选项问题 [#5056](https://github.com/vueComponent/ant-design-vue/issues/5056)
24+
- 🐞 修复默认导出的 TabPane 组件名称错误问题 [b645f8](https://github.com/vueComponent/ant-design-vue/commit/b645f827d0e13d60bc01c740ae8cbc8f61cf2cdf)
25+
26+
- Form
27+
28+
- 🌟 文档新增 7 个使用示例
29+
- 🌟 新增 FormInstance 类型导出
30+
- 🌟 校验 Number 类型时无需指定类型 [#5064](https://github.com/vueComponent/ant-design-vue/issues/5064)
31+
- 🐞 回滚 FormItem 主动赋值时自动校验特性,此场景不应该自动校验 [#5056](https://github.com/vueComponent/ant-design-vue/issues/5056)
32+
- 🐞 修复 validateMessages 错误问题
33+
34+
- 🌟 优化虚拟列表基础组件,提升 Tree、TreeSelect、Select 性能 [4e70c6](https://github.com/vueComponent/ant-design-vue/commit/4e70c6dd775254ae713d8633db2d0363027708e1) [#5069](https://github.com/vueComponent/ant-design-vue/issues/5069)
35+
- 🐞 修复 Tree 展开时卡顿闪动问题 [#5069](https://github.com/vueComponent/ant-design-vue/issues/5069)
36+
- 🐞 修复 Input 重置 undefined 时,不更新问题
37+
1338
## 3.0.0-alpha.16
1439

1540
`2021-12-19`

antd-tools/generator-types/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const rootPath = path.resolve(__dirname, '../../');
66
try {
77
parseAndWrite({
88
version: pkg.version,
9-
name: 'types',
9+
name: 'ant-design-vue',
1010
path: path.resolve(rootPath, './components'),
1111
// default match lang
1212
test: /en-US\.md/,

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ant-design-vue",
3-
"version": "3.0.0-alpha.16",
3+
"version": "3.0.0-beta.1",
44
"title": "Ant Design Vue",
55
"description": "An enterprise-class UI design language and Vue-based implementation",
66
"keywords": [
@@ -25,7 +25,8 @@
2525
"lib",
2626
"es",
2727
"scripts",
28-
"vetur"
28+
"vetur",
29+
"typings/global.d.ts"
2930
],
3031
"scripts": {
3132
"predev": "node node_modules/esbuild/install.js",

0 commit comments

Comments
 (0)