Skip to content

Commit 97e8d44

Browse files
committed
Release version 2.66.2
1 parent 166248e commit 97e8d44

File tree

10 files changed

+71
-2
lines changed

10 files changed

+71
-2
lines changed

components/ColorPicker/__changelog__/index.en-US.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 2.66.2
2+
3+
2025-07-15
4+
5+
### 🐛 BugFix
6+
7+
- Fixed the issue that RGB value cannot be input when cleared([#3017](https://github.com/arco-design/arco-design/pull/3017))
8+
19
## 2.66.1
210

311
2025-04-09

components/ColorPicker/__changelog__/index.zh-CN.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 2.66.2
2+
3+
2025-07-15
4+
5+
### 🐛 问题修复
6+
7+
- 修复 RGB 值在清空时导致不可输入的问题([#3017](https://github.com/arco-design/arco-design/pull/3017))
8+
19
## 2.66.1
210

311
2025-04-09

components/InputTag/__changelog__/index.en-US.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 2.66.2
2+
3+
2025-07-15
4+
5+
### 🐛 BugFix
6+
7+
- Fixed the issue where maxTagCount="responsive" does not take effect when the `InputTag` component imports styles on demand([#2992](https://github.com/arco-design/arco-design/pull/2992))
8+
19
## 2.65.0
210

311
2024-11-29

components/InputTag/__changelog__/index.zh-CN.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 2.66.2
2+
3+
2025-07-15
4+
5+
### 🐛 问题修复
6+
7+
- 修复 `InputTag` 组件按需引入样式时 maxTagCount="responsive" 不生效的问题([#2992](https://github.com/arco-design/arco-design/pull/2992))
8+
19
## 2.65.0
210

311
2024-11-29

components/Table/__changelog__/index.en-US.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 2.66.2
2+
3+
2025-07-15
4+
5+
### 🐛 BugFix
6+
7+
- Fixed the issue that `size=mini` configured by `ConfigProvider` does not work for `Table` component([#2981](https://github.com/arco-design/arco-design/pull/2981))
8+
19
## 2.66.0
210

311
2025-04-03

components/Table/__changelog__/index.zh-CN.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 2.66.2
2+
3+
2025-07-15
4+
5+
### 🐛 问题修复
6+
7+
- 修复`ConfigProvider` 配置的 `size=mini``Table` 组件不生效的问题([#2981](https://github.com/arco-design/arco-design/pull/2981))
8+
19
## 2.66.0
210

311
2025-04-03

components/Table/table.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,8 @@ function Table<T extends unknown>(baseProps: TableProps<T>, ref: React.Ref<Table
127127

128128
// configProvider 提供的size可能和table size 不匹配,此时默认 'default'
129129
const size =
130-
props.size || (['default', 'middle', 'small', 'mini'].indexOf(ctxSize) > -1 ? ctxSize : 'default');
130+
props.size ||
131+
(['default', 'middle', 'small', 'mini'].indexOf(ctxSize) > -1 ? ctxSize : 'default');
131132
const refTableHead = useRef<HTMLElement | null>(null);
132133
const refTableBody = useRef<HTMLElement | null>(null);
133134
const refTBody = useRef<HTMLElement | null>(null);

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@arco-design/web-react",
3-
"version": "2.66.1",
3+
"version": "2.66.2",
44
"description": "Arco Design React UI Library.",
55
"module": "./es/index.js",
66
"main": "./lib/index.js",

site/docs/version_v2.en-US.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22
changelog: true
33
---
44

5+
## 2.66.2
6+
7+
2025-07-15
8+
9+
### 🐛 BugFix
10+
11+
- Fixed the issue that RGB value cannot be input when cleared([#3017](https://github.com/arco-design/arco-design/pull/3017))
12+
- Fixed the issue where maxTagCount="responsive" does not take effect when the `InputTag` component imports styles on demand([#2992](https://github.com/arco-design/arco-design/pull/2992))
13+
- Fixed the issue that `size=mini` configured by `ConfigProvider` does not work for `Table` component([#2981](https://github.com/arco-design/arco-design/pull/2981))
14+
515
## 2.66.1
616

717
2025-04-09

site/docs/version_v2.zh-CN.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22
changelog: true
33
---
44

5+
## 2.66.2
6+
7+
2025-07-15
8+
9+
### 🐛 问题修复
10+
11+
- 修复 RGB 值在清空时导致不可输入的问题([#3017](https://github.com/arco-design/arco-design/pull/3017))
12+
- 修复 `InputTag` 组件按需引入样式时 maxTagCount="responsive" 不生效的问题([#2992](https://github.com/arco-design/arco-design/pull/2992))
13+
- 修复`ConfigProvider` 配置的 `size=mini``Table` 组件不生效的问题([#2981](https://github.com/arco-design/arco-design/pull/2981))
14+
515
## 2.66.1
616

717
2025-04-09

0 commit comments

Comments
 (0)