Skip to content

Commit

Permalink
release version
Browse files Browse the repository at this point in the history
  • Loading branch information
flsion committed Mar 29, 2024
1 parent f4717b6 commit fd5f01f
Show file tree
Hide file tree
Showing 16 changed files with 154 additions and 26 deletions.
16 changes: 16 additions & 0 deletions packages/web-vue/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@
changelog: true
```
## 2.55.1
`2024-03-29`

### 🐛 BugFix

- **empty:** fix automatically inherited warn ([#3048](https://github.com/arco-design/arco-design-vue/pull/3048))
- **trigger:** fix animation direction for position popup ([#3045](https://github.com/arco-design/arco-design-vue/pull/3045))
- **color-picker:** fix v-model not working ([#3030](https://github.com/arco-design/arco-design-vue/pull/3030))
- **color-picker:** Fix copywriting errors ([#3028](https://github.com/arco-design/arco-design-vue/pull/3028))

### 💅 Style

- **tree:** fix scrollHeight calculation exception problem ([#3044](https://github.com/arco-design/arco-design-vue/pull/3044))


## 2.55.0

`2024-03-15`
Expand Down
16 changes: 16 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,22 @@
changelog: true
```
## 2.55.1
`2024-03-29`

### 🐛 问题修复

- **empty:** 修复属性自动继承的错误 ([#3048](https://github.com/arco-design/arco-design-vue/pull/3048))
- **trigger:** 修正位置的弹出动画方向 ([#3045](https://github.com/arco-design/arco-design-vue/pull/3045))
- **color-picker:** 修复双向绑定不生效问题 ([#3030](https://github.com/arco-design/arco-design-vue/pull/3030))
- **color-picker:** 修复文案错误 ([#3028](https://github.com/arco-design/arco-design-vue/pull/3028))

### 💅 样式更新

- **tree:** 修复scrollHeight计算异常问题 ([#3044](https://github.com/arco-design/arco-design-vue/pull/3044))


## 2.55.0

`2024-03-15`
Expand Down
10 changes: 10 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,16 @@
changelog: true
```
## 2.55.1
`2024-03-29`

### 🐛 BugFix

- fix v-model not working ([#3030](https://github.com/arco-design/arco-design-vue/pull/3030))
- Fix copywriting errors ([#3028](https://github.com/arco-design/arco-design-vue/pull/3028))


## 2.55.0

`2024-03-15`
Expand Down
10 changes: 10 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,16 @@
changelog: true
```
## 2.55.1
`2024-03-29`

### 🐛 问题修复

- 修复双向绑定不生效问题 ([#3030](https://github.com/arco-design/arco-design-vue/pull/3030))
- 修复文案错误 ([#3028](https://github.com/arco-design/arco-design-vue/pull/3028))


## 2.55.0

`2024-03-15`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ exports[`<color-picker> demo: render [only-panel] correctly 1`] = `
</div>
<div class=\\"arco-color-picker-panel-colors\\">
<div class=\\"arco-color-picker-colors-section\\">
<div class=\\"arco-color-picker-colors-text\\">最近使用顏色</div>
<div class=\\"arco-color-picker-colors-text\\">最近使用颜色</div>
<div class=\\"arco-color-picker-colors-wrapper\\"><span class=\\"arco-color-picker-colors-empty\\">暂无</span></div>
</div>
<div class=\\"arco-color-picker-colors-section\\">
Expand Down
9 changes: 9 additions & 0 deletions packages/web-vue/components/empty/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
changelog: true
```
## 2.55.1
`2024-03-29`

### 🐛 BugFix

- fix automatically inherited warn ([#3048](https://github.com/arco-design/arco-design-vue/pull/3048))


## 2.47.0

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

### 🐛 问题修复

- 修复属性自动继承的错误 ([#3048](https://github.com/arco-design/arco-design-vue/pull/3048))


## 2.47.0

`2023-06-02`
Expand Down
54 changes: 31 additions & 23 deletions packages/web-vue/components/tree-select/__demo__/virtual.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,45 +12,53 @@ title:

## en-US

By specifying `treeProps.virtualListProps` to turn on the virtual list, high performance can be obtained when a large amount of data is used.
By specifying `treeProps.virtualListProps` to turn on the virtual list, high performance can be obtained when a large
amount of data is used.

```vue
<template>
<a-tree-select
:data="treeData"
:allow-search="{
retainInputValue: true
}"
multiple
tree-checkable
:scrollbar="false"
tree-checked-strategy="parent"
:treeProps="{
virtualListProps: {
height: 200
height: 200,
},
}"
></a-tree-select>
/>
</template>
<script>
export default {
setup() {
const treeData = loop();
return {
treeData
}
export default {
setup() {
const treeData = loop();
return {
treeData
}
}
}
function loop(path = '0', level = 2) {
const list = [];
for (let i = 0; i < 10; i += 1) {
const key = `${path}-${i}`;
const treeNode = {
title: key,
key,
};

if (level > 0) {
treeNode.children = loop(key, level - 1);
}
function loop(path = '0', level = 2) {
const list = [];
for (let i = 0; i < 10; i += 1) {
const key = `${path}-${i}`;
const treeNode = {
title: key,
key,
};

list.push(treeNode);
if (level > 0) {
treeNode.children = loop(key, level - 1);
}
return list;

list.push(treeNode);
}
return list;
}
</script>
```
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,11 @@ exports[`<tree-select> demo: render [trigger-element] correctly 1`] = `
`;
exports[`<tree-select> demo: render [virtual] correctly 1`] = `
"<span class=\\"arco-select-view-single arco-select-view arco-select-view-size-medium\\" title=\\"\\"><!----><input class=\\"arco-select-view-input\\" readonly=\\"\\"><span class=\\"arco-select-view-value arco-select-view-value-hidden\\"><!----></span><span class=\\"arco-select-view-suffix\\"><!----><span class=\\"arco-select-view-icon\\"><svg viewBox=\\"0 0 48 48\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\" stroke=\\"currentColor\\" class=\\"arco-icon arco-icon-down arco-select-view-arrow-icon\\" stroke-width=\\"4\\" stroke-linecap=\\"butt\\" stroke-linejoin=\\"miter\\"><path d=\\"M39.6 17.443 24.043 33 8.487 17.443\\"></path></svg></span>
"<span class=\\"arco-select-view arco-select-view-size-medium arco-select-view-has-suffix arco-select-view-has-placeholder arco-select-view-multiple\\"><span class=\\"arco-select-view-mirror\\"><!----></span>
<!---->
<transition-group-stub><input class=\\"arco-select-view-input\\" style=\\"width: 12px;\\"></transition-group-stub>
<!----><span class=\\"arco-select-view-suffix\\"><!----><span class=\\"arco-select-view-icon\\"><svg viewBox=\\"0 0 48 48\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\" stroke=\\"currentColor\\" class=\\"arco-icon arco-icon-down arco-select-view-arrow-icon\\" stroke-width=\\"4\\" stroke-linecap=\\"butt\\" stroke-linejoin=\\"miter\\"><path d=\\"M39.6 17.443 24.043 33 8.487 17.443\\"></path></svg></span>
<!---->
<!----></span></span>
<!---->"
`;
9 changes: 9 additions & 0 deletions packages/web-vue/components/tree/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
changelog: true
```
## 2.55.1
`2024-03-29`

### 💅 Style

- fix scrollHeight calculation exception problem ([#3044](https://github.com/arco-design/arco-design-vue/pull/3044))


## 2.55.0

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

### 💅 样式更新

- 修复scrollHeight计算异常问题 ([#3044](https://github.com/arco-design/arco-design-vue/pull/3044))


## 2.55.0

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

### 🐛 BugFix

- fix animation direction for position popup ([#3045](https://github.com/arco-design/arco-design-vue/pull/3045))


## 2.46.0

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

### 🐛 问题修复

- 修正位置的弹出动画方向 ([#3045](https://github.com/arco-design/arco-design-vue/pull/3045))


## 2.46.0

`2023-05-12`
Expand Down
5 changes: 5 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,11 @@
changelog: true
```
## 2.55.1
`2024-03-29`


## 2.44.6

`2023-03-31`
Expand Down
5 changes: 5 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,11 @@
changelog: true
```
## 2.55.1
`2024-03-29`


## 2.44.6

`2023-03-31`
Expand Down
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.0",
"version": "2.55.1",
"description": "Arco Design Vue 2.0: A Vue.js 3 UI Library",
"keywords": [
"arco",
Expand Down

0 comments on commit fd5f01f

Please sign in to comment.