From 34b40fc1a8ec180aea8f9ae74e4c025e75415d17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E5=98=89=E6=B6=B5?= Date: Fri, 1 Sep 2017 15:14:52 +0800 Subject: [PATCH 1/6] [build] 0.8.8 --- docs/examples-docs/changelog.md | 12 ++++++++++++ packages/index.js | 2 +- packages/vant-css/package.json | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/docs/examples-docs/changelog.md b/docs/examples-docs/changelog.md index de6ed92ed..03b14c79e 100644 --- a/docs/examples-docs/changelog.md +++ b/docs/examples-docs/changelog.md @@ -1,5 +1,17 @@ ## 更新日志 +## [v0.8.7](https://github.com/youzan/vant/tree/v0.8.7) (2017-08-29) +[Full Changelog](https://github.com/youzan/vant/compare/v0.8.6...v0.8.7) + +**非兼容更新和新特性:** + +- add ExpressWay component [\#96](https://github.com/youzan/vant/pull/96) ([chenjiahan](https://github.com/chenjiahan)) +- add CellSwitch component [\#95](https://github.com/youzan/vant/pull/95) ([chenjiahan](https://github.com/chenjiahan)) +- add NoticeBar && test cases [\#94](https://github.com/youzan/vant/pull/94) ([chenjiahan](https://github.com/chenjiahan)) +- Dialog: support both function call and component call [\#93](https://github.com/youzan/vant/pull/93) ([chenjiahan](https://github.com/chenjiahan)) +- CellSwipe: improve test coverage && code review [\#91](https://github.com/youzan/vant/pull/91) ([chenjiahan](https://github.com/chenjiahan)) +- Progress: adjust DOM struct [\#90](https://github.com/youzan/vant/pull/90) ([chenjiahan](https://github.com/chenjiahan)) + ## [v0.8.6](https://github.com/youzan/vant/tree/v0.8.6) (2017-08-24) [Full Changelog](https://github.com/youzan/vant/compare/v0.8.5...v0.8.6) diff --git a/packages/index.js b/packages/index.js index ab30360ea..689d34f2d 100644 --- a/packages/index.js +++ b/packages/index.js @@ -47,7 +47,7 @@ import Toast from './toast'; import Uploader from './uploader'; import Waterfall from './waterfall'; -const version = '0.8.7'; +const version = '0.8.8'; const components = [ Actionsheet, Badge, diff --git a/packages/vant-css/package.json b/packages/vant-css/package.json index 303fa2df3..f60d61318 100644 --- a/packages/vant-css/package.json +++ b/packages/vant-css/package.json @@ -1,6 +1,6 @@ { "name": "vant-css", - "version": "0.8.7", + "version": "0.8.8", "description": "vant css.", "main": "lib/index.css", "style": "lib/index.css", From 3c55ee20ce5e403df20e137f4ab5efe10abdc30b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E5=98=89=E6=B6=B5?= Date: Fri, 1 Sep 2017 15:14:52 +0800 Subject: [PATCH 2/6] [release] 0.8.8 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a7ea9f6c7..60ecbcf69 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vant", - "version": "0.8.7", + "version": "0.8.8", "description": "有赞vue wap组件库", "main": "lib/vant.js", "style": "lib/vant-css/index.css", From 49e7ca2fefe795cc561a6531c2f7267f6e8e896c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E5=98=89=E6=B6=B5?= Date: Fri, 1 Sep 2017 15:28:16 +0800 Subject: [PATCH 3/6] fix: build vant-css failed --- packages/vant-css/src/deep-select.css | 12 ++++++++++-- packages/vant-css/src/goods-action.css | 1 + 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/packages/vant-css/src/deep-select.css b/packages/vant-css/src/deep-select.css index e36ce7c71..265484ef0 100644 --- a/packages/vant-css/src/deep-select.css +++ b/packages/vant-css/src/deep-select.css @@ -1,10 +1,12 @@ -@import "./mixins/ellipsis"; -@import "./mixins/clearfix"; +@import "./mixins/ellipsis.css"; +@import "./mixins/clearfix.css"; @import './common/var.css'; + .van-deep-select { user-select: none; position: relative; @mixin clearfix; + &__nav { width: 143px; /*float: left;*/ @@ -16,31 +18,37 @@ background-color: $c-white; -webkit-overflow-scrolling: touch; } + &__nitem { line-height: 44px; padding: 0 15px; background-color: $c-white; @mixin multi-ellipsis 1; + &--active { background-color: $c-background; } } + &__content { padding: 0 15px; margin-left: 143px; overflow: scroll; -webkit-overflow-scrolling: touch; } + &__item { position: relative; line-height: 44px; padding-left: 5px; padding-right: 18px; @mixin multi-ellipsis 1; + &--active { color: $button-danger-background-color; } } + &__selected { float: right; position: absolute; diff --git a/packages/vant-css/src/goods-action.css b/packages/vant-css/src/goods-action.css index d09bb81a3..5bb1ecdd3 100644 --- a/packages/vant-css/src/goods-action.css +++ b/packages/vant-css/src/goods-action.css @@ -1,4 +1,5 @@ @import './common/var.css'; +@import './mixins/border_retina.css'; .van-goods-action { left: 0; From 7f25d247024e6292d98b12cc664ea78e90eb4d51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E5=98=89=E6=B6=B5?= Date: Fri, 1 Sep 2017 15:29:23 +0800 Subject: [PATCH 4/6] [build] 0.8.9 --- docs/examples-docs/changelog.md | 21 +++++++++++++++++++++ packages/index.js | 2 +- packages/vant-css/package.json | 2 +- 3 files changed, 23 insertions(+), 2 deletions(-) diff --git a/docs/examples-docs/changelog.md b/docs/examples-docs/changelog.md index 03b14c79e..46f58c413 100644 --- a/docs/examples-docs/changelog.md +++ b/docs/examples-docs/changelog.md @@ -1,5 +1,26 @@ ## 更新日志 +## [v0.8.8](https://github.com/youzan/vant/tree/v0.8.8) (2017-09-01) +[Full Changelog](https://github.com/youzan/vant/compare/v0.8.7...v0.8.8) + +**非兼容更新和新特性:** + +- Checkbox: support listen to change event [\#104](https://github.com/youzan/vant/pull/104) ([chenjiahan](https://github.com/chenjiahan)) +- add GoodsAction component [\#102](https://github.com/youzan/vant/pull/102) ([chenjiahan](https://github.com/chenjiahan)) +- add InvalidGoods component [\#100](https://github.com/youzan/vant/pull/100) ([chenjiahan](https://github.com/chenjiahan)) +- add OrderGoods component [\#99](https://github.com/youzan/vant/pull/99) ([chenjiahan](https://github.com/chenjiahan)) +- add PayOrder component [\#98](https://github.com/youzan/vant/pull/98) ([chenjiahan](https://github.com/chenjiahan)) + +**修复:** + +- 修复 make init bug [\#97](https://github.com/youzan/vant/pull/97) ([pangxie1991](https://github.com/pangxie1991)) + +**合并的 Pull Request (可能有不兼容改动):** + +- PayOrder component add tip slot [\#105](https://github.com/youzan/vant/pull/105) ([Raistlin916](https://github.com/Raistlin916)) +- Add deep-select component and fix a popup bug. [\#103](https://github.com/youzan/vant/pull/103) ([Tinysymphony](https://github.com/Tinysymphony)) +- Doc: update Step/Loading/Tag/Badge documents [\#101](https://github.com/youzan/vant/pull/101) ([chenjiahan](https://github.com/chenjiahan)) + ## [v0.8.7](https://github.com/youzan/vant/tree/v0.8.7) (2017-08-29) [Full Changelog](https://github.com/youzan/vant/compare/v0.8.6...v0.8.7) diff --git a/packages/index.js b/packages/index.js index 689d34f2d..9388bcb57 100644 --- a/packages/index.js +++ b/packages/index.js @@ -47,7 +47,7 @@ import Toast from './toast'; import Uploader from './uploader'; import Waterfall from './waterfall'; -const version = '0.8.8'; +const version = '0.8.9'; const components = [ Actionsheet, Badge, diff --git a/packages/vant-css/package.json b/packages/vant-css/package.json index f60d61318..3774e20c3 100644 --- a/packages/vant-css/package.json +++ b/packages/vant-css/package.json @@ -1,6 +1,6 @@ { "name": "vant-css", - "version": "0.8.8", + "version": "0.8.9", "description": "vant css.", "main": "lib/index.css", "style": "lib/index.css", From d836d42f739dcd3d71e7458711d17cc422f23374 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E5=98=89=E6=B6=B5?= Date: Fri, 1 Sep 2017 15:29:23 +0800 Subject: [PATCH 5/6] [release] 0.8.9 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 60ecbcf69..49ac4b8a0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vant", - "version": "0.8.8", + "version": "0.8.9", "description": "有赞vue wap组件库", "main": "lib/vant.js", "style": "lib/vant-css/index.css", From 0f4df29fd7e56dfa456072df319502b18c3b0de5 Mon Sep 17 00:00:00 2001 From: Raistlin916 Date: Fri, 1 Sep 2017 17:15:50 +0800 Subject: [PATCH 6/6] hide indicators when one swipe page --- packages/swipe/index.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/swipe/index.vue b/packages/swipe/index.vue index 6d2e642e0..efad94805 100644 --- a/packages/swipe/index.vue +++ b/packages/swipe/index.vue @@ -3,7 +3,10 @@
-
+