Browse Source

bump 1.7.0

pull/3143/head 1.7.0
tanjinzhou 4 years ago
parent
commit
a60ba677c2
  1. 14
      CHANGELOG.en-US.md
  2. 14
      CHANGELOG.zh-CN.md
  3. 2
      antd-tools/transformLess.js
  4. 2
      antdv-demo
  5. 2
      package.json

14
CHANGELOG.en-US.md

@ -10,6 +10,20 @@
--- ---
## 1.7.0
`2020-10-28`
- 🌟 Recursive Menu component, supports arbitrary nesting of other elements [#1452](https://github.com/vueComponent/ant-design-vue/issues/1452)
- 🇮🇪 Add Irish language internationalization support
- 🐞 Fix webpack 5 compatibility issues.
- 🐞 Fix the problem that the Upload method attribute does not take effect [#2837](https://github.com/vueComponent/ant-design-vue/issues/2837)
- 🐞 Fix the problem that Space does not declare properties and does not mount the root node [#2902](https://github.com/vueComponent/ant-design-vue/issues/2902)
- 🐞 Fix the problem that Table component filter does not support number type [#3052](https://github.com/vueComponent/ant-design-vue/issues/3052)
- 🐞 Fix Table fixed column ellipsis not working issue [#2916](https://github.com/vueComponent/ant-design-vue/issues/2916)
- 🐞 Fix AutoComplete component, need two tab keys to focus issue [#1438](https://github.com/vueComponent/ant-design-vue/issues/1438)
- 🐞 Fix the problem that TreeSelect cannot customize slot [#2827](https://github.com/vueComponent/ant-design-vue/issues/2827)
## 1.6.5 ## 1.6.5
`2020-08-25` `2020-08-25`

14
CHANGELOG.zh-CN.md

@ -10,6 +10,20 @@
--- ---
## 1.7.0
`2020-10-28`
- 🌟 递归 Menu 组件,支持任意嵌套其他元素 [#1452](https://github.com/vueComponent/ant-design-vue/issues/1452)
- 🇮🇪 添加爱尔兰语国际化支持
- 🐞 修复 webpack 5 兼容问题。
- 🐞 修复 Upload method 属性不生效问题 [#2837](https://github.com/vueComponent/ant-design-vue/issues/2837)
- 🐞 修复 Space 未声明属性,不挂载根结点上问题 [#2902](https://github.com/vueComponent/ant-design-vue/issues/2902)
- 🐞 修复 Table 组件 filter 不支持 number 类型问题 [#3052](https://github.com/vueComponent/ant-design-vue/issues/3052)
- 🐞 修复 Table 固定列 ellipsis 不生效问题 [#2916](https://github.com/vueComponent/ant-design-vue/issues/2916)
- 🐞 修复 AutoComplete 组件,需要两次 tab 键才可 focus 问题 [#1438](https://github.com/vueComponent/ant-design-vue/issues/1438)
- 🐞 修复 TreeSelect 不能自定义 slot 问题 [#2827](https://github.com/vueComponent/ant-design-vue/issues/2827)
## 1.6.5 ## 1.6.5
`2020-08-25` `2020-08-25`

2
antd-tools/transformLess.js

@ -23,7 +23,7 @@ function transformLess(lessFile, config = {}) {
.render(data, lessOpts) .render(data, lessOpts)
.then(result => { .then(result => {
const source = result.css; const source = result.css;
return postcss(postcssConfig.plugins).process(source); return postcss(postcssConfig.plugins).process(source, { from: undefined });
}) })
.then(r => { .then(r => {
return r.css; return r.css;

2
antdv-demo

@ -1 +1 @@
Subproject commit 21cd58ca984d96916ff9c4a2f34bb5e245d9a324 Subproject commit 98d468af9837cc3fc03c6de5d5bc1321c381ca6a

2
package.json

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

Loading…
Cancel
Save