[changelog] 1.3.5

This commit is contained in:
陈嘉涵 2018-10-10 20:54:04 +08:00
parent 41ccb72234
commit b3d320fdf7
5 changed files with 41 additions and 1 deletions

View File

@ -1,5 +1,24 @@
## Changelog
### [1.3.5](https://github.com/youzan/vant/tree/v1.3.5)
`2018-10-10`
**Improvements**
- Tab: upgrade style [\#1908](https://github.com/youzan/vant/pull/1908)
- Badge: upgrade style [\#1907](https://github.com/youzan/vant/pull/1907)
- Dialog: upgrade style [\#1906](https://github.com/youzan/vant/pull/1906)
- NoticeBar: upgrade style [\#1893](https://github.com/youzan/vant/pull/1893)
- Collapse: add disabled prop [\#1892](https://github.com/youzan/vant/pull/1892)
- TreeSelect: add height prop [\#1905](https://github.com/youzan/vant/pull/1905)
- ImagePreview: support finger zooming [\#1895](https://github.com/youzan/vant/pull/1895)
**Bug Fixes**
- fix Toast SSR error [\#1910](https://github.com/youzan/vant/pull/1910)
- fix Swipe multi finger [\#1890](https://github.com/youzan/vant/pull/1890)
### [1.3.4](https://github.com/youzan/vant/tree/v1.3.4)
`2018-10-02`

View File

@ -1,5 +1,24 @@
## 更新日志
### [1.3.5](https://github.com/youzan/vant/tree/v1.3.5)
`2018-10-10`
**Improvements**
- Tab: 样式升级 [\#1908](https://github.com/youzan/vant/pull/1908)
- Badge: 样式升级 [\#1907](https://github.com/youzan/vant/pull/1907)
- Dialog: 样式升级 [\#1906](https://github.com/youzan/vant/pull/1906)
- NoticeBar: 样式升级 [\#1893](https://github.com/youzan/vant/pull/1893)
- Collapse: 新增 disabled 属性 [\#1892](https://github.com/youzan/vant/pull/1892)
- TreeSelect: 新增 height 属性 [\#1905](https://github.com/youzan/vant/pull/1905)
- ImagePreview: 支持手势缩放图片 [\#1895](https://github.com/youzan/vant/pull/1895)
**Bug Fixes**
- 修复 Toast 在 SSR 时报错的问题 [\#1910](https://github.com/youzan/vant/pull/1910)
- 修复 Swipe 多指触控时可能导致展示错误的问题 [\#1890](https://github.com/youzan/vant/pull/1890)
### [1.3.4](https://github.com/youzan/vant/tree/v1.3.4)
`2018-10-02`

View File

@ -119,6 +119,7 @@ export default {
| 版本 | 类型 | 内容 |
|-----------|-----------|-----------|
| 1.3.6 | feature | 新增 disabled 属性 |
| 1.2.1 | feature | 新增 icon 属性 |
| 1.2.1 | feature | 新增 label 属性 |
| 1.2.1 | feature | 新增 value 属性 |

View File

@ -69,7 +69,7 @@ import TreeSelect from './tree-select';
import Uploader from './uploader';
import Waterfall from './waterfall';
const version = '1.3.4';
const version = '1.3.5';
const components = [
Actionsheet,
AddressEdit,

View File

@ -95,4 +95,5 @@ export default {
| 版本 | 类型 | 内容 |
|-----------|-----------|-----------|
| 1.3.6 | feature | 新增 height 属性 |
| 1.1.5 | improvement | 支持 string 类型 id |