Skip to content

Commit

Permalink
Release version 2.61.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yinkaihui committed Mar 15, 2024
1 parent 86b4e21 commit dbab675
Show file tree
Hide file tree
Showing 21 changed files with 177 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-site-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:

- name: get PreviewID
run: |
if ${{ github.event_name == 'push' }}; then
if ${{ github.event_name == 'pull_request' }}; then
echo "PreviewID=${{ github.event.number }}" >> $GITHUB_ENV
else
echo "PreviewID=main" >> $GITHUB_ENV
Expand Down
8 changes: 8 additions & 0 deletions components/ConfigProvider/__changelog__/index.en-US.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 2.61.0

2024-03-15

### 🆕 Feature

- `ConfigProvider` component adds `effectGlobalModal` attribute([#2562](https://github.com/arco-design/arco-design/pull/2562))

## 2.59.1

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

2024-03-15

### 🆕 功能升级

- `ConfigProvider` 组件增加 `effectGlobalModal` 属性([#2562](https://github.com/arco-design/arco-design/pull/2562))

## 2.59.1

2024-01-26
Expand Down
8 changes: 8 additions & 0 deletions components/Form/__changelog__/index.en-US.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 2.61.0

2024-03-15

### 🐛 BugFix

- Fixed the bug of internal method call error caused by `Form.useFormContext` not being used under `Form` component.([#2590](https://github.com/arco-design/arco-design/pull/2590))

## 2.60.3

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

2024-03-15

### 🐛 问题修复

- 修复 `Form.useFormContext` 未在 `Form` 组件下使用导致的内部方法调用报错的 bug。([#2590](https://github.com/arco-design/arco-design/pull/2590))

## 2.60.3

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

2024-03-15

### 🆕 Feature

- `Image` supports `resetTranslate`property([#2593](https://github.com/arco-design/arco-design/pull/2593))

### 🐛 BugFix

- Fix the problem that the image is always in the loading state when the `Image` component image link triggers the memory cache.([#2587](https://github.com/arco-design/arco-design/pull/2587))

## 2.60.2

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

2024-03-15

### 🆕 功能升级

- `Image` 新增 `resetTranslate` 属性([#2593](https://github.com/arco-design/arco-design/pull/2593))

### 🐛 问题修复

- 修复 `Image` 组件图片链接触发内存缓存时图片一直处于loading状态的问题([#2587](https://github.com/arco-design/arco-design/pull/2587))

## 2.60.2

2024-03-01
Expand Down
8 changes: 8 additions & 0 deletions components/Input/__changelog__/index.en-US.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 2.61.0

2024-03-15

### 🆕 Feature

- `Input` supports `onCompositionStart``onCompositionUpdate``onCompositionEnd` property([#2589](https://github.com/arco-design/arco-design/pull/2589))

## 2.55.1

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

2024-03-15

### 🆕 功能升级

- `Input` 组件支持 `onCompositionStart``onCompositionUpdate``onCompositionEnd` 事件([#2589](https://github.com/arco-design/arco-design/pull/2589))

## 2.55.1

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

2024-03-15

### 🆕 Feature

- The `onChange` callback of the `InputNumber` component adds a `reason` parameter to notify the component of the reason for the value change.([#2595](https://github.com/arco-design/arco-design/pull/2595))

## 2.58.1

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

2024-03-15

### 🆕 功能升级

- `InputNumber` 组件 `onChange` 回调新增 `reason` 参数用于通知组件值改变的原因。([#2595](https://github.com/arco-design/arco-design/pull/2595))

## 2.58.1

2024-01-05
Expand Down
8 changes: 8 additions & 0 deletions components/Slider/__changelog__/index.en-US.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 2.61.0

2024-03-15

### 🆕 Feature

- `Slider` supports multi-point selection within a range([#2594](https://github.com/arco-design/arco-design/pull/2594))

## 2.56.0

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

2024-03-15

### 🆕 功能升级

- `Slider` 支持范围内多点选择([#2594](https://github.com/arco-design/arco-design/pull/2594))

## 2.56.0

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

2024-03-15

### 🐛 BugFix

- Fix `Table` console warning due to missing ReactKey.([#2592](https://github.com/arco-design/arco-design/pull/2592))

## 2.60.2

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

2024-03-15

### 🐛 问题修复

- 修复 `Table` 由于 ReactKey 缺失导致的控制台警告。([#2592](https://github.com/arco-design/arco-design/pull/2592))

## 2.60.2

2024-03-01
Expand Down
8 changes: 8 additions & 0 deletions components/Typography/__changelog__/index.en-US.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 2.61.0

2024-03-15

### 🆕 Feature

- `Typography.Ellipsis` to support the display of single-line expand buttons([#2596](https://github.com/arco-design/arco-design/pull/2596))

## 2.60.1

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

2024-03-15

### 🆕 功能升级

- `Typography.Ellipsis` 支持单行展开按钮的展示([#2596](https://github.com/arco-design/arco-design/pull/2596))

## 2.60.1

2024-02-28
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.60.3';
export const version = '2.61.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.60.3",
"version": "2.61.0",
"description": "Arco Design React UI Library.",
"module": "./es/index.js",
"main": "./lib/index.js",
Expand Down
19 changes: 19 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,25 @@
changelog: true
---

## 2.61.0

2024-03-15

### 🆕 Feature

- `Typography.Ellipsis` to support the display of single-line expand buttons([#2596](https://github.com/arco-design/arco-design/pull/2596))
- The `onChange` callback of the `InputNumber` component adds a `reason` parameter to notify the component of the reason for the value change.([#2595](https://github.com/arco-design/arco-design/pull/2595))
- `Slider` supports multi-point selection within a range([#2594](https://github.com/arco-design/arco-design/pull/2594))
- `Image` supports `resetTranslate`property([#2593](https://github.com/arco-design/arco-design/pull/2593))
- `Input` supports `onCompositionStart``onCompositionUpdate``onCompositionEnd` property([#2589](https://github.com/arco-design/arco-design/pull/2589))
- `ConfigProvider` component adds `effectGlobalModal` attribute([#2562](https://github.com/arco-design/arco-design/pull/2562))

### 🐛 BugFix

- Fix `Table` console warning due to missing ReactKey.([#2592](https://github.com/arco-design/arco-design/pull/2592))
- Fixed the bug of internal method call error caused by `Form.useFormContext` not being used under `Form` component.([#2590](https://github.com/arco-design/arco-design/pull/2590))
- Fix the problem that the image is always in the loading state when the `Image` component image link triggers the memory cache.([#2587](https://github.com/arco-design/arco-design/pull/2587))

## 2.60.3

2024-03-08
Expand Down
19 changes: 19 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,25 @@
changelog: true
---

## 2.61.0

2024-03-15

### 🆕 功能升级

- `Typography.Ellipsis` 支持单行展开按钮的展示([#2596](https://github.com/arco-design/arco-design/pull/2596))
- `InputNumber` 组件 `onChange` 回调新增 `reason` 参数用于通知组件值改变的原因。([#2595](https://github.com/arco-design/arco-design/pull/2595))
- `Slider` 支持范围内多点选择([#2594](https://github.com/arco-design/arco-design/pull/2594))
- `Image` 新增 `resetTranslate` 属性([#2593](https://github.com/arco-design/arco-design/pull/2593))
- `Input` 组件支持 `onCompositionStart`、 `onCompositionUpdate`、 `onCompositionEnd` 事件([#2589](https://github.com/arco-design/arco-design/pull/2589))
- `ConfigProvider` 组件增加 `effectGlobalModal` 属性([#2562](https://github.com/arco-design/arco-design/pull/2562))

### 🐛 问题修复

- 修复 `Table` 由于 ReactKey 缺失导致的控制台警告。([#2592](https://github.com/arco-design/arco-design/pull/2592))
- 修复 `Form.useFormContext` 未在 `Form` 组件下使用导致的内部方法调用报错的 bug。([#2590](https://github.com/arco-design/arco-design/pull/2590))
- 修复 `Image` 组件图片链接触发内存缓存时图片一直处于loading状态的问题([#2587](https://github.com/arco-design/arco-design/pull/2587))

## 2.60.3

2024-03-08
Expand Down

0 comments on commit dbab675

Please sign in to comment.