diff --git a/dist/action-sheet/index.js b/dist/action-sheet/index.js index 534fc458..7a93bff1 100644 --- a/dist/action-sheet/index.js +++ b/dist/action-sheet/index.js @@ -1,5 +1,7 @@ import { VantComponent } from '../common/component'; +import { iphonex } from '../mixins/iphonex'; VantComponent({ + mixins: [iphonex], props: { show: Boolean, title: String, @@ -19,10 +21,6 @@ VantComponent({ closeOnClickOverlay: { type: Boolean, value: true - }, - safeAreaInsetBottom: { - type: Boolean, - value: true } }, methods: { diff --git a/dist/action-sheet/index.wxml b/dist/action-sheet/index.wxml index 2435c5c1..dd71adcb 100644 --- a/dist/action-sheet/index.wxml +++ b/dist/action-sheet/index.wxml @@ -16,20 +16,23 @@ bind:click="onClose" /> - + + + + - {{ info }} - {{ title }} + + + {{ title }} + diff --git a/dist/badge/index.wxss b/dist/badge/index.wxss index bb5f6b2d..a6f3e822 100644 --- a/dist/badge/index.wxss +++ b/dist/badge/index.wxss @@ -1 +1 @@ -@import '../common/index.wxss';.van-badge{display:block;overflow:hidden;font-size:14px;line-height:1.4;-webkit-user-select:none;user-select:none;color:#7d7e80;word-break:break-all;box-sizing:border-box;padding:20px 12px 20px 9px;background-color:#f8f8f8;border-left:3px solid transparent}.van-badge:active{background-color:#e8e8e8}.van-badge::after{border-bottom-width:1px}.van-badge--active{font-weight:700;color:#333;border-color:#f44}.van-badge--active::after{border-right-width:1px}.van-badge--active,.van-badge--active:active{background-color:#fff}.van-badge__info{position:absolute;top:4px;right:2px;color:#fff;font-size:12px;font-weight:500;-webkit-transform:scale(.8);transform:scale(.8);text-align:center;box-sizing:border-box;padding:0 6px;min-width:18px;line-height:18px;border-radius:9px;background-color:#f44} \ No newline at end of file +@import '../common/index.wxss';.van-badge{display:block;overflow:hidden;font-size:14px;line-height:1.4;-webkit-user-select:none;user-select:none;color:#7d7e80;word-break:break-all;box-sizing:border-box;padding:20px 12px 20px 9px;background-color:#f8f8f8;border-left:3px solid transparent}.van-badge:active{background-color:#e8e8e8}.van-badge::after{border-bottom-width:1px}.van-badge--active{font-weight:700;color:#333;border-color:#f44}.van-badge--active::after{border-right-width:1px}.van-badge--active,.van-badge--active:active{background-color:#fff}.van-badge__text{position:relative} \ No newline at end of file diff --git a/dist/button/index.js b/dist/button/index.js index c98a60ac..e5b2e792 100644 --- a/dist/button/index.js +++ b/dist/button/index.js @@ -20,28 +20,6 @@ VantComponent({ value: 'normal' } }, - computed: { - classes: function classes() { - var _this$data = this.data, - type = _this$data.type, - size = _this$data.size, - block = _this$data.block, - plain = _this$data.plain, - round = _this$data.round, - square = _this$data.square, - loading = _this$data.loading, - disabled = _this$data.disabled; - return this.classNames('van-button', "van-button--" + type, "van-button--" + size, { - 'van-button--block': block, - 'van-button--round': round, - 'van-button--plain': plain, - 'van-button--square': square, - 'van-button--loading': loading, - 'van-button--disabled': disabled, - 'van-button--unclickable': disabled || loading - }); - } - }, methods: { onClick: function onClick() { if (!this.data.disabled && !this.data.loading) { diff --git a/dist/button/index.wxml b/dist/button/index.wxml index 3480f938..63817067 100644 --- a/dist/button/index.wxml +++ b/dist/button/index.wxml @@ -1,7 +1,9 @@ + +