Skip to content

Commit

Permalink
release version
Browse files Browse the repository at this point in the history
  • Loading branch information
flsion committed Jul 26, 2024
1 parent 57a9834 commit 867cca0
Show file tree
Hide file tree
Showing 15 changed files with 131 additions and 1 deletion.
19 changes: 19 additions & 0 deletions packages/web-vue/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,25 @@
changelog: true
```
## 2.56.0
`2024-07-26`

### 🆕 Feature

- **input-number:** Added 'keydown' event to disable default behavior ([#3248](https://github.com/arco-design/arco-design-vue/pull/3248))

### 🐛 BugFix

- **tree:** fix tree node folding animation ([#3234](https://github.com/arco-design/arco-design-vue/pull/3234))
- **color-picker:** fix shaking issue when selecting color with v-model ([#3180](https://github.com/arco-design/arco-design-vue/pull/3180))
- **time-picker:** TriggerProps property not correctly passed through ([#3178](https://github.com/arco-design/arco-design-vue/pull/3178))

### 💎 Enhancement

- **menu:** fix color transition effect in selected menu item ([#3192](https://github.com/arco-design/arco-design-vue/pull/3192))


## 2.55.3

`2024-06-07`
Expand Down
19 changes: 19 additions & 0 deletions packages/web-vue/CHANGELOG.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,25 @@
changelog: true
```
## 2.56.0
`2024-07-26`

### 🆕 新增功能

- **input-number:** 增加 'keydown' 事件,可以禁止默认行为 ([#3248](https://github.com/arco-design/arco-design-vue/pull/3248))

### 🐛 问题修复

- **tree:** 修复树折叠动画不生效问题 ([#3234](https://github.com/arco-design/arco-design-vue/pull/3234))
- **color-picker:** 修复在 v-model 下选择颜色时出现的抖动问题 ([#3180](https://github.com/arco-design/arco-design-vue/pull/3180))
- **time-picker:** triggerProps 属性未正确透传问题 ([#3178](https://github.com/arco-design/arco-design-vue/pull/3178))

### 💎 功能优化

- **menu:** 修复已选中菜单项中的颜色动画过渡效果 ([#3192](https://github.com/arco-design/arco-design-vue/pull/3192))


## 2.55.3

`2024-06-07`
Expand Down
9 changes: 9 additions & 0 deletions packages/web-vue/components/color-picker/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
changelog: true
```
## 2.56.0
`2024-07-26`

### 🐛 BugFix

- fix shaking issue when selecting color with v-model ([#3180](https://github.com/arco-design/arco-design-vue/pull/3180))


## 2.55.2

`2024-05-10`
Expand Down
9 changes: 9 additions & 0 deletions packages/web-vue/components/color-picker/CHANGELOG.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
changelog: true
```
## 2.56.0
`2024-07-26`

### 🐛 问题修复

- 修复在 v-model 下选择颜色时出现的抖动问题 ([#3180](https://github.com/arco-design/arco-design-vue/pull/3180))


## 2.55.2

`2024-05-10`
Expand Down
9 changes: 9 additions & 0 deletions packages/web-vue/components/input-number/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
changelog: true
```
## 2.56.0
`2024-07-26`

### 🆕 Feature

- Added 'keydown' event to disable default behavior ([#3248](https://github.com/arco-design/arco-design-vue/pull/3248))


## 2.54.6

`2024-03-01`
Expand Down
9 changes: 9 additions & 0 deletions packages/web-vue/components/input-number/CHANGELOG.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
changelog: true
```
## 2.56.0
`2024-07-26`

### 🆕 新增功能

- 增加 'keydown' 事件,可以禁止默认行为 ([#3248](https://github.com/arco-design/arco-design-vue/pull/3248))


## 2.54.6

`2024-03-01`
Expand Down
1 change: 1 addition & 0 deletions packages/web-vue/components/input-number/README.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ description: Only input boxes in numeric format are allowed.
|blur|Triggered when the input box loses focus|ev: `FocusEvent`||
|clear|Triggered when the user clicks the clear button|ev: `Event`|2.23.0|
|input|Triggered on input|value: ` number \| undefined `<br>inputValue: `string`<br>ev: `Event`|2.27.0|
|keydown|Triggered on keydown|ev: `MouseEvent`|2.56.0|
### `<input-number>` Methods

|Method|Description|Parameters|Return|
Expand Down
1 change: 1 addition & 0 deletions packages/web-vue/components/input-number/README.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ description: 仅允许输入数字格式的输入框。
|blur|输入框失去焦点时触发|ev: `FocusEvent`||
|clear|用户点击清除按钮时触发|ev: `Event`|2.23.0|
|input|输入时触发|value: ` number \| undefined `<br>inputValue: `string`<br>ev: `Event`|2.27.0|
|keydown|按下键盘时触发|ev: `MouseEvent`|2.56.0|
### `<input-number>` Methods

|方法名|描述|参数|返回值|
Expand Down
9 changes: 9 additions & 0 deletions packages/web-vue/components/menu/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
changelog: true
```
## 2.56.0
`2024-07-26`

### 💎 Enhancement

- fix color transition effect in selected menu item ([#3192](https://github.com/arco-design/arco-design-vue/pull/3192))


## 2.54.5

`2024-02-21`
Expand Down
9 changes: 9 additions & 0 deletions packages/web-vue/components/menu/CHANGELOG.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
changelog: true
```
## 2.56.0
`2024-07-26`

### 💎 功能优化

- 修复已选中菜单项中的颜色动画过渡效果 ([#3192](https://github.com/arco-design/arco-design-vue/pull/3192))


## 2.54.5

`2024-02-21`
Expand Down
9 changes: 9 additions & 0 deletions packages/web-vue/components/time-picker/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
changelog: true
```
## 2.56.0
`2024-07-26`

### 🐛 BugFix

- TriggerProps property not correctly passed through ([#3178](https://github.com/arco-design/arco-design-vue/pull/3178))


## 2.55.3

`2024-06-07`
Expand Down
9 changes: 9 additions & 0 deletions packages/web-vue/components/time-picker/CHANGELOG.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
changelog: true
```
## 2.56.0
`2024-07-26`

### 🐛 问题修复

- triggerProps 属性未正确透传问题 ([#3178](https://github.com/arco-design/arco-design-vue/pull/3178))


## 2.55.3

`2024-06-07`
Expand Down
9 changes: 9 additions & 0 deletions packages/web-vue/components/tree/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
changelog: true
```
## 2.56.0
`2024-07-26`

### 🐛 BugFix

- fix tree node folding animation ([#3234](https://github.com/arco-design/arco-design-vue/pull/3234))


## 2.55.1

`2024-03-29`
Expand Down
9 changes: 9 additions & 0 deletions packages/web-vue/components/tree/CHANGELOG.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
changelog: true
```
## 2.56.0
`2024-07-26`

### 🐛 问题修复

- 修复树折叠动画不生效问题 ([#3234](https://github.com/arco-design/arco-design-vue/pull/3234))


## 2.55.1

`2024-03-29`
Expand Down
2 changes: 1 addition & 1 deletion packages/web-vue/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@arco-design/web-vue",
"version": "2.55.3",
"version": "2.56.0",
"description": "Arco Design Vue 2.0: A Vue.js 3 UI Library",
"keywords": [
"arco",
Expand Down

0 comments on commit 867cca0

Please sign in to comment.