Skip to content

Commit 84ecd55

Browse files
committed
revert: 发布新版本 0.66.4 (2023-12-24)
1 parent 289109e commit 84ecd55

File tree

6 files changed

+17
-12
lines changed

6 files changed

+17
-12
lines changed

CHANGELOG.en-US.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44
55
English | [Chinese](https://github.com/FightingDesign/fighting-design/blob/master/CHANGELOG.md)
66

7+
## 0.66.4 (2023-12-24)
8+
9+
- Add `f-select` component `filter` configuration item
10+
711
## 0.66.3 (2023-12-21)
812

913
- Fix the issue of responsive loss of parameter `data` in the `f-table` component

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

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

5+
## 0.66.4 (2023-12-24)
6+
7+
- 新增 `f-select` 组件 `filter` 配置项
8+
59
## 0.66.3 (2023-12-21)
610

711
- 修复 `f-table` 组件 `data` 参数响应式丢失问题

docs/components/select.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@
111111
| `placeholder` | 占位符 | string | —— | —— |
112112
| `clear` | 是否可清除 | boolean | —— | false |
113113
| `disabled` | 是否禁用 | boolean | —— | false |
114+
| `filter` | 是否可过滤 | boolean | —— | false |
114115
| `size` | 尺寸 | <a href="/components/interface.html#fightingsize">FightingSize</a> | `large` `middle` `small` `mini` | middle |
115116
| `on-change` | 绑定值发生改变时触发的回调 | <a href="#selectchange">SelectChange</a> | —— | —— |
116117

docs/docs/changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

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

5+
## 0.66.4 (2023-12-24)
6+
7+
- 新增 `f-select` 组件 `filter` 配置项
8+
59
## 0.66.3 (2023-12-21)
610

711
- 修复 `f-table` 组件 `data` 参数响应式丢失问题

packages/fighting-design/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fighting-design",
3-
"version": "0.66.3",
3+
"version": "0.66.4",
44
"description": "Fighting design can quickly build interactive interfaces in vue3 applications, which looks good.",
55
"keywords": [
66
"fighting",

start/src/App.vue

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,5 @@
1-
<template>
2-
<f-checkbox-group v-model="option2">
3-
<f-checkbox label="鸡肉卷" />
4-
<f-checkbox label="鸡排" />
5-
<f-checkbox label="汉堡" />
6-
</f-checkbox-group>
7-
</template>
1+
<script lang="ts" setup></script>
82

9-
<script lang="ts" setup>
10-
import { ref } from 'vue'
3+
<template></template>
114

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

0 commit comments

Comments
 (0)