Skip to content

Commit

Permalink
release version
Browse files Browse the repository at this point in the history
  • Loading branch information
flsion committed Jun 7, 2024
1 parent 5301be9 commit 6e7269c
Show file tree
Hide file tree
Showing 10 changed files with 103 additions and 1 deletion.
17 changes: 17 additions & 0 deletions packages/web-vue/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,23 @@
changelog: true
```
## 2.55.3
`2024-06-07`

### 🆕 Feature

- **table:** colum added the minWidth attribute ([#3157](https://github.com/arco-design/arco-design-vue/pull/3157))

### 🐛 BugFix

- **time-picker:** Fix issue with read-only mode still being editable ([#3173](https://github.com/arco-design/arco-design-vue/pull/3173))
- **time-picker:** Added `placeholder` type definition ([#3173](https://github.com/arco-design/arco-design-vue/pull/3173))
- **input:** fix display of allow-clear input button in read-only state ([#3172](https://github.com/arco-design/arco-design-vue/pull/3172))
- **table:** fix table sticky-header failure with scrollbar ([#3170](https://github.com/arco-design/arco-design-vue/pull/3170))
- **table:** Restore default style when table dynamically switches row-selection ([#3155](https://github.com/arco-design/arco-design-vue/pull/3155))


## 2.55.2

`2024-05-10`
Expand Down
17 changes: 17 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,23 @@
changelog: true
```
## 2.55.3
`2024-06-07`

### 🆕 新增功能

- **table:** column 增加 minWidth 属性 ([#3157](https://github.com/arco-design/arco-design-vue/pull/3157))

### 🐛 问题修复

- **time-picker:** 修复只读模式仍可编辑问题 ([#3173](https://github.com/arco-design/arco-design-vue/pull/3173))
- **time-picker:** 补充 `placeholder` 类型定义 ([#3173](https://github.com/arco-design/arco-design-vue/pull/3173))
- **input:** 修复只读状态下显示清空输入框按钮 ([#3172](https://github.com/arco-design/arco-design-vue/pull/3172))
- **table:** 修复虚拟滚动条开启时 sticky-header 吸顶失效 ([#3170](https://github.com/arco-design/arco-design-vue/pull/3170))
- **table:** table动态切换row-selection时恢复默认样式 ([#3155](https://github.com/arco-design/arco-design-vue/pull/3155))


## 2.55.2

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

### 🐛 BugFix

- fix display of allow-clear input button in read-only state ([#3172](https://github.com/arco-design/arco-design-vue/pull/3172))


## 2.54.3

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

### 🐛 问题修复

- 修复只读状态下显示清空输入框按钮 ([#3172](https://github.com/arco-design/arco-design-vue/pull/3172))


## 2.54.3

`2024-01-19`
Expand Down
14 changes: 14 additions & 0 deletions packages/web-vue/components/table/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@
changelog: true
```
## 2.55.3
`2024-06-07`

### 🆕 Feature

- colum added the minWidth attribute ([#3157](https://github.com/arco-design/arco-design-vue/pull/3157))

### 🐛 BugFix

- fix table sticky-header failure with scrollbar ([#3170](https://github.com/arco-design/arco-design-vue/pull/3170))
- Restore default style when table dynamically switches row-selection ([#3155](https://github.com/arco-design/arco-design-vue/pull/3155))


## 2.54.4

`2024-02-02`
Expand Down
14 changes: 14 additions & 0 deletions packages/web-vue/components/table/CHANGELOG.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@
changelog: true
```
## 2.55.3
`2024-06-07`

### 🆕 新增功能

- column 增加 minWidth 属性 ([#3157](https://github.com/arco-design/arco-design-vue/pull/3157))

### 🐛 问题修复

- 修复虚拟滚动条开启时 sticky-header 吸顶失效 ([#3170](https://github.com/arco-design/arco-design-vue/pull/3170))
- table动态切换row-selection时恢复默认样式 ([#3155](https://github.com/arco-design/arco-design-vue/pull/3155))


## 2.54.4

`2024-02-02`
Expand Down
2 changes: 2 additions & 0 deletions packages/web-vue/components/table/README.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@ description: It is used for data collection, display, analysis and processing, a
|data-index|Identifies the column information, corresponding to the data in TableData|`string`|`-`||
|title|Column title|`string`|`-`||
|width|Column width|`number`|`-`||
|min-width|Minimum column width|`number`|`-`||
|align|Alignment direction|`TableColumnData['align']`|`-`||
|fixed|Fixed position|`TableColumnData['fixed']`|`-`||
|ellipsis|Whether to display as omitted|`boolean`|`false`||
Expand Down Expand Up @@ -254,6 +255,7 @@ type Sorter = { filed: string; direction: 'ascend' | 'descend' } | Record<string
|dataIndex|The identifier of the column information, corresponding to the data in `TableData`|`string`|`-`||
|title|Column header|`string \| RenderFunction`|`-`||
|width|Column width|`number`|`-`||
|minWidth|Minimum column width|`number`|`-`||
|align|Alignment direction|`'left' \| 'center' \| 'right'`|`-`||
|fixed|Fixed position|`'left' \| 'right'`|`-`||
|ellipsis|Whether to show ellipsis|`boolean`|`false`||
Expand Down
10 changes: 10 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,16 @@
changelog: true
```
## 2.55.3
`2024-06-07`

### 🐛 BugFix

- Fix issue with read-only mode still being editable ([#3173](https://github.com/arco-design/arco-design-vue/pull/3173))
- Added `placeholder` type definition ([#3173](https://github.com/arco-design/arco-design-vue/pull/3173))


## 2.44.6

`2023-03-31`
Expand Down
10 changes: 10 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,16 @@
changelog: true
```
## 2.55.3
`2024-06-07`

### 🐛 问题修复

- 修复只读模式仍可编辑问题 ([#3173](https://github.com/arco-design/arco-design-vue/pull/3173))
- 补充 `placeholder` 类型定义 ([#3173](https://github.com/arco-design/arco-design-vue/pull/3173))


## 2.44.6

`2023-03-31`
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.2",
"version": "2.55.3",
"description": "Arco Design Vue 2.0: A Vue.js 3 UI Library",
"keywords": [
"arco",
Expand Down

0 comments on commit 6e7269c

Please sign in to comment.