Skip to content

Commit

Permalink
revert: 发布新版本 0.27.0 (2023-03-08) 🌻🌻🌻
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyh2001 committed Mar 8, 2023
1 parent dfe0db9 commit 3036da3
Show file tree
Hide file tree
Showing 5 changed files with 46 additions and 21 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,27 @@
English | [Chinese](https://github.com/FightingDesign/fighting-design/blob/master/CHANGELOG.md)

## 0.27.0 (2023-03-08)

**Fix**

- Fix `f-select` component width failure
- Fix the `f-box` component style problem
- Fix the failure of `f-table` component style parameters
- Fix the failure of `f-pagination` component drop-down menu selection
- Fix `f-pagination` click misplacement
- Fix the `f-pagination` style problem

**Optimization**

- Optimize `f-toolbar` component callback parameters and types
- Optimize `f-input` component callback parameters and types
- Optimize `f-pagination` component style details

**New**

- `f-select` component adds`on-change`configuration item

## 0.26.2 (2023-03-01)

**Fix**
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.27.0 (2023-03-08)

**修复**

- 修复 `f-select` 组件 width 失效问题
Expand Down
19 changes: 19 additions & 0 deletions docs/docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,25 @@

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

**修复**

- 修复 `f-select` 组件 width 失效问题
- 修复 `f-box` 组件样式问题
- 修复 `f-table` 组件样式参数失效问题
- 修复 `f-pagination` 组件下拉菜单选择失效问题
- 修复 `f-pagination` 点击错位的问题
- 修复 `f-pagination` 样式问题

**优化**

- 优化 `f-toolbar` 组件回调参数和类型
- 优化 `f-input` 组件回调参数和类型
- 优化 `f-pagination` 组件样式细节

**新增**

- `f-select` 组件新增 `on-change` 配置项

## 0.26.2 (2023-03-01)

**修复**
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.26.2",
"version": "0.27.0",
"description": "Fighting design can quickly build interactive interfaces in vue3 applications, which looks good.",
"keywords": [
"fighting",
Expand Down
23 changes: 3 additions & 20 deletions start/src/App.vue
Original file line number Diff line number Diff line change
@@ -1,22 +1,5 @@
<script lang="ts" setup>
import { ref } from 'vue'
<script lang="ts" setup></script>

const current = ref(1)
const total = ref(100000)
<template></template>

const pagesize = ref(10)
const pageSizes = ref([10, 20, 30, 40, 50])
</script>

<template>
<f-pagination
v-model:current="current"
v-model:page-size="pagesize"
round
jump-search
background
:total="total"
:page-sizes="pageSizes"
/>
</template>
<style lang="scss" scoped></style>

0 comments on commit 3036da3

Please sign in to comment.