mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
[changelog] 1.4.7
This commit is contained in:
parent
270960392e
commit
ad5121286b
@ -1,5 +1,29 @@
|
||||
## Changelog
|
||||
|
||||
## [v1.4.7](https://github.com/youzan/vant/tree/v1.4.7)
|
||||
`2018-11-27`
|
||||
|
||||
**Improvements**
|
||||
|
||||
- add Notify component [\#2135](https://github.com/youzan/vant/pull/2135)
|
||||
- Cell: add title-class、value-class、label-class prop [\#2138](https://github.com/youzan/vant/pull/2138)
|
||||
- Icon: add more basic icons [\#2159](https://github.com/youzan/vant/pull/2159) [\#2169](https://github.com/youzan/vant/pull/2169)
|
||||
- Icon: name can be URL [\#2149](https://github.com/youzan/vant/pull/2149)
|
||||
- List: add finished-text prop [\#2131](https://github.com/youzan/vant/pull/2131)
|
||||
- Rate: add icon、void-icon prop [\#2148](https://github.com/youzan/vant/pull/2148)
|
||||
- NavBar: add border prop [\#2143](https://github.com/youzan/vant/pull/2143)
|
||||
- CouponCell: remove wrapper [\#2145](https://github.com/youzan/vant/pull/2145)
|
||||
- Style: add more transition class [\#2163](https://github.com/youzan/vant/pull/2163)
|
||||
- update CDN provider to jsdelivr [\#2167](https://github.com/youzan/vant/pull/2167)
|
||||
|
||||
**Bug Fixes**
|
||||
|
||||
- fix ImagePreview index NaN [\#2146](https://github.com/youzan/vant/pull/2146)
|
||||
- fix Toast line wrap in iOS [\#2142](https://github.com/youzan/vant/pull/2142)
|
||||
- fix GoodsAction duplicate style [\#2140](https://github.com/youzan/vant/pull/2140)
|
||||
- fix DatetimePicker get wrong value when set minDate [\#2137](https://github.com/youzan/vant/pull/2137)
|
||||
|
||||
|
||||
## [v1.4.5](https://github.com/youzan/vant/tree/v1.4.5)
|
||||
`2018-11-23`
|
||||
|
||||
|
@ -1,5 +1,30 @@
|
||||
## 更新日志
|
||||
|
||||
## [v1.4.7](https://github.com/youzan/vant/tree/v1.4.7)
|
||||
`2018-11-27`
|
||||
|
||||
**Improvements**
|
||||
|
||||
- 新增 Notify 消息通知组件 [\#2135](https://github.com/youzan/vant/pull/2135)
|
||||
- Cell: 新增 title-class、value-class、label-class 属性 [\#2138](https://github.com/youzan/vant/pull/2138)
|
||||
- Icon: 增加更多基础图标 [\#2159](https://github.com/youzan/vant/pull/2159) [\#2169](https://github.com/youzan/vant/pull/2169)
|
||||
- Icon: 支持传入图片链接作为图标展示 [\#2149](https://github.com/youzan/vant/pull/2149)
|
||||
- List: 新增 finished-text 属性 [\#2131](https://github.com/youzan/vant/pull/2131)
|
||||
- Rate: 新增 icon、void-icon 属性 [\#2148](https://github.com/youzan/vant/pull/2148)
|
||||
- NavBar: 新增 border 属性 [\#2143](https://github.com/youzan/vant/pull/2143)
|
||||
- Style: 新增多个内置 transition 动画 [\#2163](https://github.com/youzan/vant/pull/2163)
|
||||
- CouponCell: 移除了默认外边框 [\#2145](https://github.com/youzan/vant/pull/2145)
|
||||
- CDN 服务商更换为 jsdelivr,以提供更快的国内访问速度 [\#2167](https://github.com/youzan/vant/pull/2167)
|
||||
|
||||
**Bug Fixes**
|
||||
|
||||
- 修复 ImagePreview 页码出现 NaN 的问题 [\#2146](https://github.com/youzan/vant/pull/2146)
|
||||
- 修复 Toast 在 iOS 设备上文字错误换行的问题 [\#2142](https://github.com/youzan/vant/pull/2142)
|
||||
- 修复 GoodsAction 部分样式代码重复的问题 [\#2140](https://github.com/youzan/vant/pull/2140)
|
||||
- 修复 DatetimePicker 设置了 minDate 时初始 value 错误的问题 [\#2137](https://github.com/youzan/vant/pull/2137)
|
||||
|
||||
PS: 不小心跳过了 1.4.6 版本 ^_^
|
||||
|
||||
## [v1.4.5](https://github.com/youzan/vant/tree/v1.4.5)
|
||||
`2018-11-23`
|
||||
|
||||
|
@ -67,7 +67,7 @@ export default {
|
||||
| finished | 是否已加载完成,加载完成后不再触发`load`事件 | `Boolean` | `false` | - |
|
||||
| offset | 滚动条与底部距离小于 offset 时触发`load`事件 | `Number` | `300` | - |
|
||||
| loading-text | 加载过程中的提示文案 | `String` | `加载中...` | 1.1.1 |
|
||||
| finished-text | 加载完成后的提示文案 | `String` | - | 1.4.6 |
|
||||
| finished-text | 加载完成后的提示文案 | `String` | - | 1.4.7 |
|
||||
| immediate-check | 是否在初始化时立即执行滚动位置检查 | `Boolean` | `true` | - |
|
||||
|
||||
### Event
|
||||
|
@ -54,7 +54,7 @@ export default {
|
||||
| right-text | 右侧文案 | `String` | `''` | - |
|
||||
| left-arrow | 是否显示左侧箭头 | `Boolean` | `false` | - |
|
||||
| fixed | 是否固定在顶部 | `Boolean` | `false` | - |
|
||||
| border | 是否显示下边框 | `Boolean` | `true` | 1.4.6 |
|
||||
| border | 是否显示下边框 | `Boolean` | `true` | 1.4.7 |
|
||||
| z-index | 元素 z-index | `Number` | `1` | - |
|
||||
|
||||
### Slot
|
||||
|
@ -50,7 +50,7 @@ export default {
|
||||
|
||||
| 参数 | 说明 | 类型 | 默认值 | 版本 |
|
||||
|------|------|------|------|------|
|
||||
| message | 展示文案 | `String` | - | 1.4.6 |
|
||||
| duration | 展示时长(ms),值为 0 时,notify 不会消失 | `Number` | `3000` | 1.4.6 |
|
||||
| color | 字体颜色 | `String` | `#fff` | 1.4.6 |
|
||||
| background | 背景颜色 | `String` | `#f44` | 1.4.6 |
|
||||
| message | 展示文案 | `String` | - | 1.4.7 |
|
||||
| duration | 展示时长(ms),值为 0 时,notify 不会消失 | `Number` | `3000` | 1.4.7 |
|
||||
| color | 字体颜色 | `String` | `#fff` | 1.4.7 |
|
||||
| background | 背景颜色 | `String` | `#f44` | 1.4.7 |
|
||||
|
Loading…
x
Reference in New Issue
Block a user