Skip to content

Commit dbd4b95

Browse files
committed
revert: 1.0.0-alpha.8 (2024-06-12)
1 parent 645d27d commit dbd4b95

File tree

5 files changed

+19
-1
lines changed

5 files changed

+19
-1
lines changed

CHANGELOG.en-US.md

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44
55
English | [Chinese](https://github.com/FightingDesign/fighting-design/blob/master/CHANGELOG.md)
66

7+
## 1.0.0 alpha.8 (2024-06-12)
8+
9+
- Fix the issue of `f-image` and `f-avatar` components being squeezed
10+
- Fix the issue of inability to execute events in the `f-link` components `no-link` state
11+
712
## 1.0.0-alpha.7 (2024-05-24)
813

914
- Add callback parameters to the `f-select` component `on-before-change` configuration item

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22

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

5+
## 1.0.0-alpha.8 (2024-06-12)
6+
57
- 修复 `f-image``f-avatar` 组件被挤压的问题
8+
- 修复 `f-link` 组件 `no-link` 状态下无法执行事件的问题
69

710
## 1.0.0-alpha.7 (2024-05-24)
811

docs/docs/changelog.md

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

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

5+
## 1.0.0-alpha.8 (2024-06-12)
6+
7+
- 修复 `f-image``f-avatar` 组件被挤压的问题
8+
- 修复 `f-link` 组件 `no-link` 状态下无法执行事件的问题
9+
510
## 1.0.0-alpha.7 (2024-05-24)
611

712
- `f-select` 组件 `on-before-change` 配置项新增回调参数

packages/fighting-design/link/src/link.vue

+5
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,13 @@
2424
* @see event.preventDefault https://developer.mozilla.org/zh-CN/docs/Web/API/Event/preventDefault
2525
*/
2626
evt.preventDefault()
27+
}
28+
29+
// 只有在禁用状态下需要返回,跳转状态下继续执行事件
30+
if (prop.disabled) {
2731
return
2832
}
33+
2934
run(prop.onClick, evt)
3035
}
3136

packages/fighting-design/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fighting-design",
3-
"version": "1.0.0-alpha.7",
3+
"version": "1.0.0-alpha.8",
44
"description": "Fighting design can quickly build interactive interfaces in vue3 applications, which looks good.",
55
"keywords": [
66
"fighting",

0 commit comments

Comments
 (0)