Skip to content

Commit

Permalink
Release version 2.63.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yinkaihui committed Jun 11, 2024
1 parent 24250fc commit d4dbc68
Show file tree
Hide file tree
Showing 12 changed files with 104 additions and 2 deletions.
8 changes: 8 additions & 0 deletions components/Cascader/__changelog__/index.en-US.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 2.63.0

2024-06-11

### 🐛 BugFix

- Fix the issue where the `label` data of type `ReactNode` in the `Cascader` component is converted to a string during search.([#2698](https://github.com/arco-design/arco-design/pull/2698))

## 2.57.0

2023-12-08
Expand Down
8 changes: 8 additions & 0 deletions components/Cascader/__changelog__/index.zh-CN.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 2.63.0

2024-06-11

### 🐛 问题修复

- 修复`Cascader`组件在搜索时, `ReactNode` 类型的`label`数据被转换成字符串的问题。([#2698](https://github.com/arco-design/arco-design/pull/2698))

## 2.57.0

2023-12-08
Expand Down
8 changes: 8 additions & 0 deletions components/InputTag/__changelog__/index.en-US.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 2.63.0

2024-06-11

### 💎 Enhancement

- reduce time complexity of InputTag([#2690](https://github.com/arco-design/arco-design/pull/2690))

## 2.62.1

2024-05-17
Expand Down
8 changes: 8 additions & 0 deletions components/InputTag/__changelog__/index.zh-CN.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 2.63.0

2024-06-11

### 💎 功能优化

- 优化 InputTag 渲染逻辑,降低时间复杂度([#2690](https://github.com/arco-design/arco-design/pull/2690))

## 2.62.1

2024-05-17
Expand Down
12 changes: 12 additions & 0 deletions components/Select/__changelog__/index.en-US.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## 2.63.0

2024-06-11

### 💎 Enhancement

- Enhance the rendering performance of SelectView([#2690](https://github.com/arco-design/arco-design/pull/2690))

### 🐛 BugFix

- Fixed a bug in which the rendering node style is incorrect when `Select` renderTag and maxTagCount are used at the same time (introduced in `2.62.0`).([#2706](https://github.com/arco-design/arco-design/pull/2706))

## 2.62.0

2024-04-26
Expand Down
12 changes: 12 additions & 0 deletions components/Select/__changelog__/index.zh-CN.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## 2.63.0

2024-06-11

### 💎 功能优化

- 优化 SelectView 渲染逻辑,避免选中多个结点时渲染卡顿([#2690](https://github.com/arco-design/arco-design/pull/2690))

### 🐛 问题修复

- 修复 `Select` renderTag 和 maxTagCount 同时使用时渲染节点样式有误的 bug(`2.62.0` 引入)。([#2706](https://github.com/arco-design/arco-design/pull/2706))

## 2.62.0

2024-04-26
Expand Down
2 changes: 1 addition & 1 deletion components/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -229,5 +229,5 @@ export { default as Watermark } from './Watermark';
export type { ImageProps, ImagePreviewProps, ImagePreviewActionProps, ImagePreviewGroupProps } from './Image/interface';
export { default as Image } from './Image';

export const version = '2.62.1';
export const version = '2.63.0';

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@arco-design/web-react",
"version": "2.63.0-beta.0",
"version": "2.63.0",
"description": "Arco Design React UI Library.",
"module": "./es/index.js",
"main": "./lib/index.js",
Expand Down
8 changes: 8 additions & 0 deletions site/docs/changelog.common.en-US.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 2.63.0

2024-06-11

### 💎 Enhancement

- 优化 findDOMNode 逻辑([#2540](https://github.com/arco-design/arco-design/pull/2540))

## 2.59.0

2024-01-19
Expand Down
8 changes: 8 additions & 0 deletions site/docs/changelog.common.zh-CN.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 2.63.0

2024-06-11

### 💎 功能优化

- 优化 findDOMNode 逻辑([#2540](https://github.com/arco-design/arco-design/pull/2540))

## 2.59.0

2024-01-19
Expand Down
15 changes: 15 additions & 0 deletions site/docs/version_v2.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@
changelog: true
---

## 2.63.0

2024-06-11

### 💎 Enhancement

- Enhance the rendering performance of SelectView([#2690](https://github.com/arco-design/arco-design/pull/2690))
- reduce time complexity of InputTag([#2690](https://github.com/arco-design/arco-design/pull/2690))
- 优化 findDOMNode 逻辑([#2540](https://github.com/arco-design/arco-design/pull/2540))

### 🐛 BugFix

- Fixed a bug in which the rendering node style is incorrect when `Select` renderTag and maxTagCount are used at the same time (introduced in `2.62.0`).([#2706](https://github.com/arco-design/arco-design/pull/2706))
- Fix the issue where the `label` data of type `ReactNode` in the `Cascader` component is converted to a string during search.([#2698](https://github.com/arco-design/arco-design/pull/2698))

## 2.62.1

2024-05-17
Expand Down
15 changes: 15 additions & 0 deletions site/docs/version_v2.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@
changelog: true
---

## 2.63.0

2024-06-11

### 💎 功能优化

- 优化 SelectView 渲染逻辑,避免选中多个结点时渲染卡顿([#2690](https://github.com/arco-design/arco-design/pull/2690))
- 优化 InputTag 渲染逻辑,降低时间复杂度([#2690](https://github.com/arco-design/arco-design/pull/2690))
- 整体优化 findDOMNode 逻辑,避免 API 废弃警告([#2540](https://github.com/arco-design/arco-design/pull/2540))

### 🐛 问题修复

- 修复 `Select` renderTag 和 maxTagCount 同时使用时渲染节点样式有误的 bug(`2.62.0` 引入)。([#2706](https://github.com/arco-design/arco-design/pull/2706))
- 修复`Cascader`组件在搜索时, `ReactNode` 类型的`label`数据被转换成字符串的问题。([#2698](https://github.com/arco-design/arco-design/pull/2698))

## 2.62.1

2024-05-17
Expand Down

0 comments on commit d4dbc68

Please sign in to comment.