Skip to content

Commit

Permalink
release version
Browse files Browse the repository at this point in the history
  • Loading branch information
flsion committed May 10, 2024
1 parent a2a98d6 commit 94d229c
Show file tree
Hide file tree
Showing 30 changed files with 146 additions and 19 deletions.
1 change: 1 addition & 0 deletions packages/arco-vue-scripts/src/scripts/changelog/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ const componentList = [
'scrollbar',
'watermark',
'color-picker',
'verification-code',
];

export const isValidComponent = (component: string) => {
Expand Down
20 changes: 20 additions & 0 deletions packages/web-vue/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,26 @@
changelog: true
```
## 2.55.2
`2024-05-10`

### 🐛 BugFix

- **verification-code:** fix formatter not being applied during paste ([#3110](https://github.com/arco-design/arco-design-vue/pull/3110))
- **upload:** import missing image styles for upload component ([#3101](https://github.com/arco-design/arco-design-vue/pull/3101))
- **transfer:** fix disabled behavior in transfer simple mode ([#3067](https://github.com/arco-design/arco-design-vue/pull/3067))
- **color-picker:** fix color-picker style import ([#3052](https://github.com/arco-design/arco-design-vue/pull/3052))

### 💅 Style

- **color-picker:** Optimize color control bar background fillet style ([#3116](https://github.com/arco-design/arco-design-vue/pull/3116))

### 🆎 TypeScript

- undefined ([#2998](https://github.com/arco-design/arco-design-vue/pull/2998))


## 2.55.1

`2024-03-29`
Expand Down
20 changes: 20 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,26 @@
changelog: true
```
## 2.55.2
`2024-05-10`

### 🐛 问题修复

- **verification-code:** 修复粘贴时`formatter`未生效 ([#3110](https://github.com/arco-design/arco-design-vue/pull/3110))
- **upload:** 修复上传组件预览样式引入缺失 ([#3101](https://github.com/arco-design/arco-design-vue/pull/3101))
- **transfer:** 修复 simple 模式下禁用失效 ([#3067](https://github.com/arco-design/arco-design-vue/pull/3067))
- **color-picker:** 修复样式按需导入错误 ([#3052](https://github.com/arco-design/arco-design-vue/pull/3052))

### 💅 样式更新

- **color-picker:** 优化颜色控制条背景圆角样式 ([#3116](https://github.com/arco-design/arco-design-vue/pull/3116))

### 🆎 类型修正

- correct the type definition for popupContainer ([#2998](https://github.com/arco-design/arco-design-vue/pull/2998))


## 2.55.1

`2024-03-29`
Expand Down
2 changes: 1 addition & 1 deletion packages/web-vue/components/cascader/README.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ description: Refers to the use of multi-level classification to separate the opt
|default-popup-visible|Whether to display the dropdown by default (uncontrolled state)|`boolean`|`false`||
|placeholder|Placeholder|`string`|`-`||
|filter-option|Custom options filter method|`(inputValue: string, option: CascaderOption) => boolean`|`-`||
|popup-container|Mount container for popup|`string \| HTMLElement \| null \| undefined`|`-`||
|popup-container|Mount container for popup|`string \| HTMLElement`|`-`||
|max-tag-count|In multi-select mode, the maximum number of labels displayed. 0 means unlimited|`number`|`0`||
|format-label|Format display content|`(options: CascaderOption[]) => string`|`-`||
|trigger-props|Trigger props of the drop-down menu|`TriggerProps`|`-`||
Expand Down
2 changes: 1 addition & 1 deletion packages/web-vue/components/cascader/README.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ description: 指在选择器选项数量较多时,采用多级分类的方式
|default-popup-visible|是否默认显示下拉框(非受控状态)|`boolean`|`false`||
|placeholder|占位符|`string`|`-`||
|filter-option|自定义选项过滤方法|`(inputValue: string, option: CascaderOption) => boolean`|`-`||
|popup-container|弹出框的挂载容器|`string \| HTMLElement \| null \| undefined`|`-`||
|popup-container|弹出框的挂载容器|`string \| HTMLElement`|`-`||
|max-tag-count|多选模式下,最多显示的标签数量。0 表示不限制|`number`|`0`||
|format-label|格式化展示内容|`(options: CascaderOption[]) => string`|`-`||
|trigger-props|下拉菜单的触发器属性|`TriggerProps`|`-`||
Expand Down
13 changes: 13 additions & 0 deletions packages/web-vue/components/color-picker/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@
changelog: true
```
## 2.55.2
`2024-05-10`

### 🐛 BugFix

- fix color-picker style import ([#3052](https://github.com/arco-design/arco-design-vue/pull/3052))

### 💅 Style

- Optimize color control bar background fillet style ([#3116](https://github.com/arco-design/arco-design-vue/pull/3116))


## 2.55.1

`2024-03-29`
Expand Down
13 changes: 13 additions & 0 deletions packages/web-vue/components/color-picker/CHANGELOG.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@
changelog: true
```
## 2.55.2
`2024-05-10`

### 🐛 问题修复

- 修复样式按需导入错误 ([#3052](https://github.com/arco-design/arco-design-vue/pull/3052))

### 💅 样式更新

- 优化颜色控制条背景圆角样式 ([#3116](https://github.com/arco-design/arco-design-vue/pull/3116))


## 2.55.1

`2024-03-29`
Expand Down
2 changes: 1 addition & 1 deletion packages/web-vue/components/date-picker/README.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ description: Choose a date. Support year, month, week, day type, support range s
|disabled-time|Unselectable time|`(current: Date) => DisabledTimeProps`|`-`||
|picker-value **(v-model)**|Date displayed on the panel|`Date \| string \| number`|`-`||
|default-picker-value|The date displayed on the panel by default|`Date \| string \| number`|`-`||
|popup-container|Mount container for pop-up box|`string \| HTMLElement \| null \| undefined`|`-`||
|popup-container|Mount container for pop-up box|`string \| HTMLElement`|`-`||
|value-format|The format of the value, valid for `value` `defaultValue` `pickerValue` `defaultPickerValue` and the return value in the event, supports setting as timestamp, Date and string (refer to [String parsing format](#string-parsing-format) ). If not specified, it will be formatted as a string, in the same format as `format`.|`'timestamp' \| 'Date' \| string`|`-`|2.16.0|
|preview-shortcut|Whether to preview the result of the shortcut|`boolean`|`true`|2.28.0|
|show-confirm-btn|Whether to show the confirm button, always show when `showTime = true`.|`boolean`|`false`|2.29.0|
Expand Down
2 changes: 1 addition & 1 deletion packages/web-vue/components/date-picker/README.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ description: 选择日期。支持年、月、周、日类型,支持范围选
|disabled-time|不可选取的时间|`(current: Date) => DisabledTimeProps`|`-`||
|picker-value **(v-model)**|面板显示的日期|`Date \| string \| number`|`-`||
|default-picker-value|面板默认显示的日期|`Date \| string \| number`|`-`||
|popup-container|弹出框的挂载容器|`string \| HTMLElement \| null \| undefined`|`-`||
|popup-container|弹出框的挂载容器|`string \| HTMLElement`|`-`||
|value-format|值的格式,对 `value` `defaultValue` `pickerValue` `defaultPickerValue` 以及事件中的返回值生效,支持设置为时间戳,Date 和字符串(参考[字符串解析格式](#字符串解析格式))。如果没有指定,将格式化为字符串,格式同 `format`。|`'timestamp' \| 'Date' \| string`|`-`|2.16.0|
|preview-shortcut|是否要预览快捷选择的结果|`boolean`|`true`|2.28.0|
|show-confirm-btn|是否显示确认按钮,`showTime = true` 的时候始终显示。|`boolean`|`false`|2.29.0|
Expand Down
2 changes: 1 addition & 1 deletion packages/web-vue/components/dropdown/README.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ description: When there are too many commands on the page, the alternative comma
|default-popup-visible|Whether the popup is visible by default (uncontrolled mode)|`boolean`|`false`|
|trigger|Trigger method|`'hover' \| 'click' \| 'focus' \| 'contextMenu'`|`'click'`|
|position|Popup position|`'top' \| 'tl' \| 'tr' \| 'bottom' \| 'bl' \| 'br'`|`'br'`|
|popup-container|Mount container for popup|`string \| HTMLElement \| null \| undefined`|`-`|
|popup-container|Mount container for popup|`string \| HTMLElement`|`-`|
|disabled|Whether to disable|`boolean`|`false`|
|type|Button type|`string`|`-`|
|size|Button size|`string`|`-`|
Expand Down
2 changes: 1 addition & 1 deletion packages/web-vue/components/dropdown/README.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ description: 页面上的命令过多时,可将备选命令收纳到向下展
|default-popup-visible|弹出框默认是否可见(非受控模式)|`boolean`|`false`|
|trigger|触发方式|`'hover' \| 'click' \| 'focus' \| 'contextMenu'`|`'click'`|
|position|弹出位置|`'top' \| 'tl' \| 'tr' \| 'bottom' \| 'bl' \| 'br'`|`'br'`|
|popup-container|弹出框的挂载容器|`string \| HTMLElement \| null \| undefined`|`-`|
|popup-container|弹出框的挂载容器|`string \| HTMLElement`|`-`|
|disabled|是否禁用|`boolean`|`false`|
|type|按钮类型|`string`|`-`|
|size|按钮大小|`string`|`-`|
Expand Down
2 changes: 1 addition & 1 deletion packages/web-vue/components/form/README.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ const data = reactive({
]
})
````
At this point, if you want to specify the value corresponding to the current `form-item` as `id: '2222'`, you need to set `field="people.1.id"`, and the separator in the value needs to use `.`
At this point, if you want to specify the value corresponding to the current `form-item` as `id: '2222'`, you need to set `field="people.2.id"`, and the separator in the value needs to use `.`

### About using clickable elements in the label slot

Expand Down
2 changes: 1 addition & 1 deletion packages/web-vue/components/form/README.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ const data = reactive({
]
})
```
此时,如果想要指定当前 `form-item` 对应的值为 `id: '2222'`,需要设置 `field="people.1.id"`,值中的分隔符需要使用 `.`。数组分割也可以使用 `[]`,例如 `field="people[1].id"`
此时,如果想要指定当前 `form-item` 对应的值为 `id: '2222'`,需要设置 `field="people.2.id"`,值中的分隔符需要使用 `.`。数组分割也可以使用 `[]`,例如 `field="people[2].id"`

### 关于在 label 插槽中使用可点击元素

Expand Down
2 changes: 1 addition & 1 deletion packages/web-vue/components/image/README.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ description: Used to show and preview pictures.
|mask-closable|Whether to close the modal when mask is clicked|`boolean`|`true`|
|closable|Whether to show close button|`boolean`|`true`|
|actions-layout|Layout of action list|`string[]`|`[ 'fullScreen', 'rotateRight', 'rotateLeft', 'zoomIn', 'zoomOut', 'originalSize',]`|
|popup-container|Set the mount point of the pop-up box, the same as the `to` of `teleport`, the default value is document.body|`HTMLElement \| string`|`-`|
|popup-container|Set the mount point of the pop-up box, the same as the `to` of `teleport`, the default value is document.body|`string \| HTMLElement`|`-`|
### `<image-preview-group>` Events

|Event Name|Description|Parameters|
Expand Down
2 changes: 1 addition & 1 deletion packages/web-vue/components/image/README.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ description: 展示和预览图片。
|mask-closable|点击 mask 是否触发关闭|`boolean`|`true`|
|closable|是否显示关闭按钮|`boolean`|`true`|
|actions-layout|控制条的布局|`string[]`|`[ 'fullScreen', 'rotateRight', 'rotateLeft', 'zoomIn', 'zoomOut', 'originalSize',]`|
|popup-container|设置弹出框的挂载点,同 `teleport` 的 `to`,缺省值是 document.body|`HTMLElement \| string`|`-`|
|popup-container|设置弹出框的挂载点,同 `teleport` 的 `to`,缺省值是 document.body|`string \| HTMLElement`|`-`|
### `<image-preview-group>` Events

|事件名|描述|参数|
Expand Down
2 changes: 1 addition & 1 deletion packages/web-vue/components/popconfirm/README.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ description: Click on the element and a popconfirm will pop up.
|content-style|The style of the popup content|`CSSProperties`|`-`|
|arrow-class|The class name of the popup arrow|`ClassName`|`-`|
|arrow-style|The style of the popup arrow|`CSSProperties`|`-`|
|popup-container|Mount container for popup|`string \| HTMLElement \| undefined`|`-`|
|popup-container|Mount container for popup|`string \| HTMLElement`|`-`|
|on-before-ok|The callback function before the ok event is triggered. If false is returned, subsequent events will not be triggered, and done can also be used to close asynchronously.|`( done: (closed: boolean) => void) => void \| boolean \| Promise<void \| boolean>`|`-`|
|on-before-cancel|The callback function before the cancel event is triggered. If it returns false, no subsequent events will be triggered.|`() => boolean`|`-`|
### `<popconfirm>` Events
Expand Down
2 changes: 1 addition & 1 deletion packages/web-vue/components/popconfirm/README.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ description: 点击元素,弹出气泡式的确认框。
|content-style|弹出框内容的样式|`CSSProperties`|`-`|
|arrow-class|弹出框箭头的类名|`ClassName`|`-`|
|arrow-style|弹出框箭头的样式|`CSSProperties`|`-`|
|popup-container|弹出框的挂载点|`string \| HTMLElement \| undefined`|`-`|
|popup-container|弹出框的挂载点|`string \| HTMLElement`|`-`|
|on-before-ok|触发 ok 事件前的回调函数。如果返回 false 则不会触发后续事件,也可使用 done 进行异步关闭。|`( done: (closed: boolean) => void) => void \| boolean \| Promise<void \| boolean>`|`-`|
|on-before-cancel|触发 cancel 事件前的回调函数。如果返回 false 则不会触发后续事件。|`() => boolean`|`-`|
### `<popconfirm>` Events
Expand Down
2 changes: 1 addition & 1 deletion packages/web-vue/components/popover/README.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ description: When the mouse hovers, focus, or click on a component, a bubble-lik
|content-style|The style of the popup content|`CSSProperties`|`-`|
|arrow-class|The class name of the popup arrow|`ClassName`|`-`|
|arrow-style|The style of the popup arrow|`CSSProperties`|`-`|
|popup-container|Mount container for pop-up box|`string \| HTMLElement \| null \| undefined`|`-`|
|popup-container|Mount container for pop-up box|`string \| HTMLElement`|`-`|
### `<popover>` Events

|Event Name|Description|Parameters|
Expand Down
2 changes: 1 addition & 1 deletion packages/web-vue/components/popover/README.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ description: 鼠标悬停、聚焦或点击在某个组件时,弹出的气泡
|content-style|弹出框内容的样式|`CSSProperties`|`-`|
|arrow-class|弹出框箭头的类名|`ClassName`|`-`|
|arrow-style|弹出框箭头的样式|`CSSProperties`|`-`|
|popup-container|弹出框的挂载容器|`string \| HTMLElement \| null \| undefined`|`-`|
|popup-container|弹出框的挂载容器|`string \| HTMLElement`|`-`|
### `<popover>` Events

|事件名|描述|参数|
Expand Down
2 changes: 1 addition & 1 deletion packages/web-vue/components/tooltip/README.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ description: A tooltip that popup when the mouse hovers, focus, or click on a co
|content-style|The style of the popup content|`CSSProperties`|`-`|
|arrow-class|The class name of the popup arrow|`ClassName`|`-`|
|arrow-style|The style of the popup arrow|`CSSProperties`|`-`|
|popup-container|Mount container for popup|`string \| HTMLElement \| null \| undefined`|`-`|
|popup-container|Mount container for popup|`string \| HTMLElement`|`-`|
### `<tooltip>` Events

|Event Name|Description|Parameters|
Expand Down
2 changes: 1 addition & 1 deletion packages/web-vue/components/tooltip/README.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ description: 鼠标悬停、聚焦或点击在某个组件时,弹出的文字
|content-style|弹出框内容的样式|`CSSProperties`|`-`|
|arrow-class|弹出框箭头的类名|`ClassName`|`-`|
|arrow-style|弹出框箭头的样式|`CSSProperties`|`-`|
|popup-container|弹出框的挂载容器|`string \| HTMLElement \| null \| undefined`|`-`|
|popup-container|弹出框的挂载容器|`string \| HTMLElement`|`-`|
### `<tooltip>` Events

|事件名|描述|参数|
Expand Down
9 changes: 9 additions & 0 deletions packages/web-vue/components/transfer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
changelog: true
```
## 2.55.2
`2024-05-10`

### 🐛 BugFix

- fix disabled behavior in transfer simple mode ([#3067](https://github.com/arco-design/arco-design-vue/pull/3067))


## 2.54.6

`2024-03-01`
Expand Down
9 changes: 9 additions & 0 deletions packages/web-vue/components/transfer/CHANGELOG.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
changelog: true
```
## 2.55.2
`2024-05-10`

### 🐛 问题修复

- 修复 simple 模式下禁用失效 ([#3067](https://github.com/arco-design/arco-design-vue/pull/3067))


## 2.54.6

`2024-03-01`
Expand Down
2 changes: 1 addition & 1 deletion packages/web-vue/components/tree-select/README.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ description: The tree structure data can be selected.
|filter-tree-node|Custom node filter function|`(searchKey: string, nodeData: TreeNodeData) => boolean`|`-`||
|load-more|Load data dynamically|`(nodeData: TreeNodeData) => Promise<void>`|`-`||
|disable-filter|Disable internal filtering logic|`boolean`|`false`||
|popup-container|Mount container for pop-up box|`string \| HTMLElement \| undefined`|`-`||
|popup-container|Mount container for pop-up box|`string \| HTMLElement`|`-`||
|fallback-option|Customize node data for keys that do not match options|`boolean \| ((key: number \| string) => TreeNodeData \| boolean)`|`true`|2.22.0|
|selectable|Set the nodes that can be selected, all can be selected by default|`boolean\| 'leaf'\| (( node: TreeNodeData, info: { isLeaf: boolean; level: number } ) => boolean)`|`true`|2.27.0|
|scrollbar|Whether to enable virtual scroll bar|`boolean \| ScrollbarProps`|`true`|2.39.0|
Expand Down
2 changes: 1 addition & 1 deletion packages/web-vue/components/tree-select/README.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ description: 可以对树形结构数据进行选择。
|filter-tree-node|自定义节点过滤函数|`(searchKey: string, nodeData: TreeNodeData) => boolean`|`-`||
|load-more|动态加载数据|`(nodeData: TreeNodeData) => Promise<void>`|`-`||
|disable-filter|禁用内部过滤逻辑|`boolean`|`false`||
|popup-container|弹出框的挂载容器|`string \| HTMLElement \| undefined`|`-`||
|popup-container|弹出框的挂载容器|`string \| HTMLElement`|`-`||
|fallback-option|为 value 中找不到匹配项的 key 定义节点数据|`boolean \| ((key: number \| string) => TreeNodeData \| boolean)`|`true`|2.22.0|
|selectable|设置可选择的节点,默认全部可选|`boolean\| 'leaf'\| (( node: TreeNodeData, info: { isLeaf: boolean; level: number } ) => boolean)`|`true`|2.27.0|
|scrollbar|是否开启虚拟滚动条|`boolean \| ScrollbarProps`|`true`|2.39.0|
Expand Down
9 changes: 9 additions & 0 deletions packages/web-vue/components/upload/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
changelog: true
```
## 2.55.2
`2024-05-10`

### 🐛 BugFix

- import missing image styles for upload component ([#3101](https://github.com/arco-design/arco-design-vue/pull/3101))


## 2.55.1

`2024-03-29`
Expand Down
9 changes: 9 additions & 0 deletions packages/web-vue/components/upload/CHANGELOG.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
changelog: true
```
## 2.55.2
`2024-05-10`

### 🐛 问题修复

- 修复上传组件预览样式引入缺失 ([#3101](https://github.com/arco-design/arco-design-vue/pull/3101))


## 2.55.1

`2024-03-29`
Expand Down
12 changes: 12 additions & 0 deletions packages/web-vue/components/verification-code/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
```yaml
changelog: true
```
## 2.55.2
`2024-05-10`

### 🐛 BugFix

- fix formatter not being applied during paste ([#3110](https://github.com/arco-design/arco-design-vue/pull/3110))

12 changes: 12 additions & 0 deletions packages/web-vue/components/verification-code/CHANGELOG.zh-CN.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
```yaml
changelog: true
```
## 2.55.2
`2024-05-10`

### 🐛 问题修复

- 修复粘贴时`formatter`未生效 ([#3110](https://github.com/arco-design/arco-design-vue/pull/3110))

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.1",
"version": "2.55.2",
"description": "Arco Design Vue 2.0: A Vue.js 3 UI Library",
"keywords": [
"arco",
Expand Down

0 comments on commit 94d229c

Please sign in to comment.