Skip to content

Commit

Permalink
release 4.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tangjinzhou committed Apr 25, 2024
1 parent 8e8073d commit 9a45b35
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@

---

## 4.2.1

- 🐞 fix Input clear action error [#7523](https://github.com/vueComponent/ant-design-vue/issues/7523)

## 4.2.0

- 🌟 Optimize the textColor change when the layout component switches to dark mode [#7498](https://github.com/vueComponent/ant-design-vue/issues/7498)
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@

---

## 4.2.1

- 🐞 修复 Input 清空操作才报错问题 [#7523](https://github.com/vueComponent/ant-design-vue/issues/7523)

## 4.2.0

- 🌟 优化 layout 组件切换 dark 模式时 textColor 变化 [#7498](https://github.com/vueComponent/ant-design-vue/issues/7498)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ant-design-vue",
"version": "4.2.0",
"version": "4.2.1",
"title": "Ant Design Vue",
"description": "An enterprise-class UI design language and Vue-based implementation",
"keywords": [
Expand Down
5 changes: 4 additions & 1 deletion site/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ import vueJsx from '@vitejs/plugin-vue-jsx';
export default {
resolve: {
alias: {
vue: 'vue/dist/vue.esm-bundler.js',
vue:
process.env.NODE_ENV === 'production'
? 'vue/dist/vue.runtime.esm-browser.prod.js'
: 'vue/dist/vue.esm-bundler.js',
'ant-design-vue/es': path.resolve(__dirname, '../components'),
'ant-design-vue': path.resolve(__dirname, '../components'),
'@': path.resolve(__dirname, './src'),
Expand Down

0 comments on commit 9a45b35

Please sign in to comment.