From 6e7269c2b02a26c61b763482ce5f5f672362ecdc Mon Sep 17 00:00:00 2001 From: wangchen Date: Fri, 7 Jun 2024 18:12:38 +0800 Subject: [PATCH] release version --- packages/web-vue/CHANGELOG.md | 17 +++++++++++++++++ packages/web-vue/CHANGELOG.zh-CN.md | 17 +++++++++++++++++ packages/web-vue/components/input/CHANGELOG.md | 9 +++++++++ .../web-vue/components/input/CHANGELOG.zh-CN.md | 9 +++++++++ packages/web-vue/components/table/CHANGELOG.md | 14 ++++++++++++++ .../web-vue/components/table/CHANGELOG.zh-CN.md | 14 ++++++++++++++ .../web-vue/components/table/README.en-US.md | 2 ++ .../web-vue/components/time-picker/CHANGELOG.md | 10 ++++++++++ .../components/time-picker/CHANGELOG.zh-CN.md | 10 ++++++++++ packages/web-vue/package.json | 2 +- 10 files changed, 103 insertions(+), 1 deletion(-) diff --git a/packages/web-vue/CHANGELOG.md b/packages/web-vue/CHANGELOG.md index 5b07bb437..300aca60e 100644 --- a/packages/web-vue/CHANGELOG.md +++ b/packages/web-vue/CHANGELOG.md @@ -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` diff --git a/packages/web-vue/CHANGELOG.zh-CN.md b/packages/web-vue/CHANGELOG.zh-CN.md index 1a6d736ce..5dc41f93c 100644 --- a/packages/web-vue/CHANGELOG.zh-CN.md +++ b/packages/web-vue/CHANGELOG.zh-CN.md @@ -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` diff --git a/packages/web-vue/components/input/CHANGELOG.md b/packages/web-vue/components/input/CHANGELOG.md index a10593dbd..121dc6d0c 100644 --- a/packages/web-vue/components/input/CHANGELOG.md +++ b/packages/web-vue/components/input/CHANGELOG.md @@ -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` diff --git a/packages/web-vue/components/input/CHANGELOG.zh-CN.md b/packages/web-vue/components/input/CHANGELOG.zh-CN.md index da1d44f70..1f37cd531 100644 --- a/packages/web-vue/components/input/CHANGELOG.zh-CN.md +++ b/packages/web-vue/components/input/CHANGELOG.zh-CN.md @@ -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` diff --git a/packages/web-vue/components/table/CHANGELOG.md b/packages/web-vue/components/table/CHANGELOG.md index 8afa1ebcf..2f1e3f8e1 100644 --- a/packages/web-vue/components/table/CHANGELOG.md +++ b/packages/web-vue/components/table/CHANGELOG.md @@ -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` diff --git a/packages/web-vue/components/table/CHANGELOG.zh-CN.md b/packages/web-vue/components/table/CHANGELOG.zh-CN.md index 63e7aed27..99f1fe067 100644 --- a/packages/web-vue/components/table/CHANGELOG.zh-CN.md +++ b/packages/web-vue/components/table/CHANGELOG.zh-CN.md @@ -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` diff --git a/packages/web-vue/components/table/README.en-US.md b/packages/web-vue/components/table/README.en-US.md index bf7ee303a..38643a2b6 100644 --- a/packages/web-vue/components/table/README.en-US.md +++ b/packages/web-vue/components/table/README.en-US.md @@ -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`|| @@ -254,6 +255,7 @@ type Sorter = { filed: string; direction: 'ascend' | 'descend' } | Record