parent
f9e823b051
commit
a1ffe2ae90
|
@ -10,6 +10,15 @@
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
## 2.2.0
|
||||||
|
|
||||||
|
`2021-07-06`
|
||||||
|
|
||||||
|
- ๐ Refactor the Button component, remove type="danger", and add the `danger` attribute [#4291](https://github.com/vueComponent/ant-design-vue/issues/4291)
|
||||||
|
- ๐ Fix Rate component not updating issue [#4294](https://github.com/vueComponent/ant-design-vue/issues/4294)
|
||||||
|
- ๐ Fix Tree replaceFields error report [#4298](https://github.com/vueComponent/ant-design-vue/issues/4298)
|
||||||
|
- ๐ Fix Modal missing parentContext type problem [#4305](https://github.com/vueComponent/ant-design-vue/issues/4305)
|
||||||
|
|
||||||
## 2.2.0-rc.1
|
## 2.2.0-rc.1
|
||||||
|
|
||||||
`2021-06-29`
|
`2021-06-29`
|
||||||
|
@ -77,7 +86,7 @@
|
||||||
|
|
||||||
`2021-06-17`
|
`2021-06-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
|
- ๐ฅ๐ฅ๐ฅ 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
|
||||||
- ๐ฅ๐ฅ๐ฅ 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
|
- ๐ฅ๐ฅ๐ฅ 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
|
||||||
- ๐ Menu
|
- ๐ Menu
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,15 @@
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
## 2.2.0
|
||||||
|
|
||||||
|
`2021-07-06`
|
||||||
|
|
||||||
|
- ๐ ้ๆ Button ็ปไปถ๏ผ็งป้ค type="danger"๏ผๆฐๅข `danger` ๅฑๆง [#4291](https://github.com/vueComponent/ant-design-vue/issues/4291)
|
||||||
|
- ๐ ไฟฎๅค Rate ็ปไปถไธๆดๆฐ้ฎ้ข [#4294](https://github.com/vueComponent/ant-design-vue/issues/4294)
|
||||||
|
- ๐ ไฟฎๅค Tree replaceFields ๆฅ้้ฎ้ข [#4298](https://github.com/vueComponent/ant-design-vue/issues/4298)
|
||||||
|
- ๐ ไฟฎๅค Modal ็ผบๅฐ parentContext ็ฑปๅ้ฎ้ข [#4305](https://github.com/vueComponent/ant-design-vue/issues/4305)
|
||||||
|
|
||||||
## 2.2.0-rc.1
|
## 2.2.0-rc.1
|
||||||
|
|
||||||
`2021-06-29`
|
`2021-06-29`
|
||||||
|
|
|
@ -80,7 +80,7 @@ function compileTs(stream) {
|
||||||
return stream
|
return stream
|
||||||
.pipe(ts(tsConfig))
|
.pipe(ts(tsConfig))
|
||||||
.js.pipe(
|
.js.pipe(
|
||||||
through2.obj(function(file, encoding, next) {
|
through2.obj(function (file, encoding, next) {
|
||||||
// console.log(file.path, file.base);
|
// console.log(file.path, file.base);
|
||||||
file.path = file.path.replace(/\.[jt]sx$/, '.js');
|
file.path = file.path.replace(/\.[jt]sx$/, '.js');
|
||||||
this.push(file);
|
this.push(file);
|
||||||
|
@ -146,7 +146,7 @@ function compile(modules) {
|
||||||
const less = gulp
|
const less = gulp
|
||||||
.src(['components/**/*.less'])
|
.src(['components/**/*.less'])
|
||||||
.pipe(
|
.pipe(
|
||||||
through2.obj(function(file, encoding, next) {
|
through2.obj(function (file, encoding, next) {
|
||||||
this.push(file.clone());
|
this.push(file.clone());
|
||||||
if (
|
if (
|
||||||
file.path.match(/\/style\/index\.less$/) ||
|
file.path.match(/\/style\/index\.less$/) ||
|
||||||
|
@ -294,7 +294,7 @@ gulp.task(
|
||||||
|
|
||||||
function publish(tagString, done) {
|
function publish(tagString, done) {
|
||||||
let args = ['publish', '--with-antd-tools'];
|
let args = ['publish', '--with-antd-tools'];
|
||||||
// args = args.concat(['--tag', 'next']);
|
args = args.concat(['--tag', 'next']);
|
||||||
if (tagString) {
|
if (tagString) {
|
||||||
args = args.concat(['--tag', tagString]);
|
args = args.concat(['--tag', tagString]);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "ant-design-vue",
|
"name": "ant-design-vue",
|
||||||
"version": "2.2.0-rc.1",
|
"version": "2.2.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": [
|
||||||
|
|
2
v2-doc
2
v2-doc
|
@ -1 +1 @@
|
||||||
Subproject commit b6ab0fec2cfa378bab8dfe6c8ef6b6a8664b970e
|
Subproject commit 89612874e476dc788711cdaedfd037b9497e5e78
|
Loadingโฆ
Reference in New Issue