Merge branch 'dev' into next

This commit is contained in:
chenjiahan
2020-06-19 06:45:40 +08:00
111 changed files with 4109 additions and 2285 deletions

View File

@@ -10,6 +10,47 @@ Vant follows [Semantic Versioning 2.0.0](https://semver.org/lang/zh-CN/).
- Minor versionreleased every one to two months, including backwards compatible features.
- Major versionincluding breaking changes and new features.
### [v2.8.6](https://github.com/youzan/vant/compare/v2.8.5...v2.8.6)
`2020-06-13`
**Feature**
- NoticeBar: allow to force scrolling [7b0546](https://github.com/youzan/vant/commit/7b0546dbba7425988ae2b4d1765fe20e907c893f)
- Picker: item-height support rem unit [#6462](https://github.com/youzan/vant/issues/6462)
- Stepper: add placeholder prop [#6519](https://github.com/youzan/vant/issues/6519)
**style**
- Field: update disabled color [#6534](https://github.com/youzan/vant/issues/6534)
**Bug Fixes**
- Calendar: quick select not work when select same day [#6504](https://github.com/youzan/vant/issues/6504)
- CollapseItem: can't hide border [#6533](https://github.com/youzan/vant/issues/6533)
- Field: formatter not work when v-model changed [#6490](https://github.com/youzan/vant/issues/6490)
- ImagePreview: image blurred after scale on iOS [#6496](https://github.com/youzan/vant/issues/6496)
- Picker: cursor.defaultIndex may be 0 [#6473](https://github.com/youzan/vant/issues/6473)
- Tabbar: avoid redundant navigation error [#6474](https://github.com/youzan/vant/issues/6474)
### [v2.8.5](https://github.com/youzan/vant/compare/v2.8.4...v2.8.5)
`2020-06-04`
**Feature**
- DropdownItem: add lazy-render prop [#6454](https://github.com/youzan/vant/issues/6454)
- Notify: support component call [#6453](https://github.com/youzan/vant/issues/6453)
- ShareSheet: add options description [#6460](https://github.com/youzan/vant/issues/6460)
- Skeleton: add round prop [#6441](https://github.com/youzan/vant/issues/6441)
**Bug Fixes**
- Popup: incorrect overlay z-index when reopened [#6429](https://github.com/youzan/vant/issues/6429)
- Button: set font-size to inherit when loading [#6413](https://github.com/youzan/vant/issues/6413) [#6414](https://github.com/youzan/vant/issues/6414)
- NoticeBar: scroll failed after activated [d21420](https://github.com/youzan/vant/commit/d21420b7d2357c4c0b47bc0f38b48e57d7fd9b81)
- Field: fix render error when value is null or undefined [#6419](https://github.com/youzan/vant/issues/6419)
### [v2.8.4](https://github.com/youzan/vant/compare/v2.8.3...v2.8.4)
`2020-05-28`

View File

@@ -10,6 +10,47 @@ Vant 遵循 [Semver](https://semver.org/lang/zh-CN/) 语义化版本规范。
- 次版本号:每隔一至二个月发布,包含新特性和较大的功能更新,向下兼容。
- 主版本号:发布时间不定,包含不兼容更新,预计下一个主版本会与 Vue 3.0 同期发布。
### [v2.8.6](https://github.com/youzan/vant/compare/v2.8.5...v2.8.6)
`2020-06-13`
**Feature**
- Stepper: 新增 placeholder 属性 [#6519](https://github.com/youzan/vant/issues/6519)
- Picker: 选项高度支持配置 rem 单位 [#6462](https://github.com/youzan/vant/issues/6462)
- NoticeBar: 支持在内容较短时开启滚动播放 [7b0546](https://github.com/youzan/vant/commit/7b0546dbba7425988ae2b4d1765fe20e907c893f)
**style**
- Field: 更新禁用状态下的文本颜色 [#6534](https://github.com/youzan/vant/issues/6534)
**Bug Fixes**
- Calendar: 修复范围选择时无法快捷选择同一天的问题 [#6504](https://github.com/youzan/vant/issues/6504)
- CollapseItem: 修复无法通过 border 属性隐藏内边框的问题 [#6533](https://github.com/youzan/vant/issues/6533)
- Field: 修复 v-model 绑定值变化时 formatter 函数没生效的问题 [#6490](https://github.com/youzan/vant/issues/6490)
- ImagePreview: 修复在 iOS 上放大后图片变模糊的问题 [#6496](https://github.com/youzan/vant/issues/6496)
- Picker: 修复级联选择时 defaultIndex 在个别情况下取值错误的问题 [#6473](https://github.com/youzan/vant/issues/6473)
- Tabbar: 修复使用 vue-router 3.3 以上版本时出现重复路由提示的问题 [#6474](https://github.com/youzan/vant/issues/6474)
### [v2.8.5](https://github.com/youzan/vant/compare/v2.8.4...v2.8.5)
`2020-06-04`
**Feature**
- Notify: 支持组件调用 [#6453](https://github.com/youzan/vant/issues/6453)
- Skeleton: 新增 round 属性,用于展示圆角风格 [#6441](https://github.com/youzan/vant/issues/6441)
- ShareSheet: 支持在 option 中配置 description 属性 [#6460](https://github.com/youzan/vant/issues/6460)
- DropdownItem: 新增 lazy-render 属性,由于控制是否开启延迟渲染 [#6454](https://github.com/youzan/vant/issues/6454)
**Bug Fixes**
- Popup: 修复重复弹出时遮罩层 z-index 未正确更新的问题 [#6429](https://github.com/youzan/vant/issues/6429)
- Button: 修复设置 loading 时无法与其他按钮垂直对齐的问题 [#6413](https://github.com/youzan/vant/issues/6413) [#6414](https://github.com/youzan/vant/issues/6414)
- NoticeBar: 修复在 keep-alive 内重新渲染时无法正确滚动的问题 [d21420](https://github.com/youzan/vant/commit/d21420b7d2357c4c0b47bc0f38b48e57d7fd9b81)
- Field: 修复 value 为 null 且开启 show-word-limit 时出现报错的问题 [#6419](https://github.com/youzan/vant/issues/6419)
### [v2.8.4](https://github.com/youzan/vant/compare/v2.8.3...v2.8.4)
`2020-05-28`

View File

@@ -59,7 +59,7 @@
- [意见反馈](https://github.com/youzan/vant/issues)
- [更新日志](#/zh-CN/changelog)
- [码云镜像](https://gitee.com/organizations/vant-contrib)
- [码云镜像](https://vant-contrib.gitee.io/vant)
- [Gitter 讨论组](https://gitter.im/vant-contrib/discuss?utm_source=share-link&utm_medium=link&utm_campaign=share-link)
### 开源协议