Skip to content

Commit

Permalink
revert: 发布新版本 0.66.4 (2023-12-24)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyh2001 committed Dec 24, 2023
1 parent 289109e commit 84ecd55
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 12 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.66.4 (2023-12-24)

- Add `f-select` component `filter` configuration item

## 0.66.3 (2023-12-21)

- Fix the issue of responsive loss of parameter `data` in the `f-table` component
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

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

## 0.66.4 (2023-12-24)

- 新增 `f-select` 组件 `filter` 配置项

## 0.66.3 (2023-12-21)

- 修复 `f-table` 组件 `data` 参数响应式丢失问题
Expand Down
1 change: 1 addition & 0 deletions docs/components/select.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@
| `placeholder` | 占位符 | string | —— | —— |
| `clear` | 是否可清除 | boolean | —— | false |
| `disabled` | 是否禁用 | boolean | —— | false |
| `filter` | 是否可过滤 | boolean | —— | false |
| `size` | 尺寸 | <a href="/components/interface.html#fightingsize">FightingSize</a> | `large` `middle` `small` `mini` | middle |
| `on-change` | 绑定值发生改变时触发的回调 | <a href="#selectchange">SelectChange</a> | —— | —— |

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

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

## 0.66.4 (2023-12-24)

- 新增 `f-select` 组件 `filter` 配置项

## 0.66.3 (2023-12-21)

- 修复 `f-table` 组件 `data` 参数响应式丢失问题
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.66.3",
"version": "0.66.4",
"description": "Fighting design can quickly build interactive interfaces in vue3 applications, which looks good.",
"keywords": [
"fighting",
Expand Down
14 changes: 3 additions & 11 deletions start/src/App.vue
Original file line number Diff line number Diff line change
@@ -1,13 +1,5 @@
<template>
<f-checkbox-group v-model="option2">
<f-checkbox label="鸡肉卷" />
<f-checkbox label="鸡排" />
<f-checkbox label="汉堡" />
</f-checkbox-group>
</template>
<script lang="ts" setup></script>

<script lang="ts" setup>
import { ref } from 'vue'
<template></template>

const option2 = ref(['汉堡'])
</script>
<style lang="scss" scoped></style>

0 comments on commit 84ecd55

Please sign in to comment.