Skip to content

Commit

Permalink
revert: 发布新版本 0.33.0 (2023-04-25)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyh2001 committed Apr 25, 2023
1 parent b6e4905 commit b10b651
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 1 deletion.
11 changes: 11 additions & 0 deletions CHANGELOG.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@
English | [Chinese](https://github.com/FightingDesign/fighting-design/blob/master/CHANGELOG.md)

## 0.33.0 (2023-04-25)

- Abolish the `f-table` component `optional` configuration item
- Optimization of `f table` component type
- Optimize the implementation of `f-input` and `f-textarea` components

**Fix**

- Fix some cases of the `f-tooltip` component where `disabled` is invalid
- Fix the utils `isFunction `method to address some components `async` function failure issues

## 0.32.0 (2023-04-12)

- Fix the issue of incorrect pop-up positions for `FMessage`
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

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

## 0.33.0 (2023-04-25)

- 废除 `f-table` 组件 `optional` 配置项
- `f-table` 组件类型优化
- 优化 `f-input` `f-textarea` 组件实现
Expand Down
11 changes: 11 additions & 0 deletions docs/docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

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

## 0.33.0 (2023-04-25)

- 废除 `f-table` 组件 `optional` 配置项
- `f-table` 组件类型优化
- 优化 `f-input` `f-textarea` 组件实现

**Fix**

- 修复 `f-tooltip` 组件部分情况 `disabled` 无效
- 修复 utils `isFunction` 方法,解决部分组件对于 `async` 函数失效问题

## 0.32.0 (2023-04-12)

- 修复 `FMessage` 不同弹出位置错误的问题
Expand Down
2 changes: 1 addition & 1 deletion packages/fighting-design/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fighting-design",
"version": "0.32.0",
"version": "0.33.0",
"description": "Fighting design can quickly build interactive interfaces in vue3 applications, which looks good.",
"keywords": [
"fighting",
Expand Down
4 changes: 4 additions & 0 deletions start/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -120,9 +120,13 @@
const searchList = (e, v) => console.log(e, v)
const c = (e, v) => console.log('change', e, v)
const i = (e, v) => console.log('input', e, v)
const send = async e => console.log(e)
</script>

<template>
<f-button :on-click="send">获取</f-button>
<f-button @click="send">获取</f-button>
<h3>{{ value1 }}</h3>
<f-input
v-model="value1"
Expand Down

0 comments on commit b10b651

Please sign in to comment.