Skip to content

Commit

Permalink
fix: 修复 f-submenu 组件折叠动画太慢的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyh2001 committed Dec 1, 2023
1 parent 2170847 commit cb86d2b
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
English | [Chinese](https://github.com/FightingDesign/fighting-design/blob/master/CHANGELOG.md)

## 0.64.1 (2023-12-01)

- Fix the issue of slow folding animation of `f-submenu` components

## 0.63.1 (2023-08-28)

- Fix the issue of multiple ·f-select· components not triggering scrolling to selected elements
Expand Down
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,14 @@

中文 | [英文](https://github.com/FightingDesign/fighting-design/blob/master/CHANGELOG.en-US.md)

## 0.64.1 (2023-12-01)

- 修复 `f-submenu` 组件折叠动画太慢的问题

## 0.64.0 (2023-10-07)

- Fixed `f-dialog` style details
- Fix `f-watermark` removable issue
- 修复 `f-dialog` 样式的详细问题
- 修复 `f-watermark` 可删除问题

## 0.63.1 (2023-08-28)

Expand Down
8 changes: 6 additions & 2 deletions docs/docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,14 @@

中文 | [英文](https://github.com/FightingDesign/fighting-design/blob/master/CHANGELOG.en-US.md)

## 0.64.1 (2023-12-01)

- 修复 `f-submenu` 组件折叠动画太慢的问题

## 0.64.0 (2023-10-07)

- Fixed `f-dialog` style details
- Fix `f-watermark` removable issue
- 修复 `f-dialog` 样式的详细问题
- 修复 `f-watermark` 可删除问题

## 0.63.1 (2023-08-28)

Expand Down
4 changes: 2 additions & 2 deletions packages/fighting-design/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fighting-design",
"version": "0.64.0",
"version": "0.64.1",
"description": "Fighting design can quickly build interactive interfaces in vue3 applications, which looks good.",
"keywords": [
"fighting",
Expand Down Expand Up @@ -60,4 +60,4 @@
},
"homepage": "https://fighting.tianyuhao.cn",
"repository": "https://github.com/FightingDesign/fighting-design"
}
}
4 changes: 1 addition & 3 deletions packages/fighting-design/submenu/src/submenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,8 @@

<!-- 主要的折叠菜单内容 -->
<div role="none" class="f-submenu__content">
<f-collapse-animation :opened="isOpened">
<!-- <div v-show="isOpened"> -->
<f-collapse-animation :opened="isOpened" :animation-time="0.27">
<slot />
<!-- </div> -->
</f-collapse-animation>
</div>
</div>
Expand Down

0 comments on commit cb86d2b

Please sign in to comment.