[improvement] Icon: add custom-style prop (#677)

This commit is contained in:
neverland 2018-09-29 15:06:03 +08:00 committed by GitHub
parent b08e90e40d
commit 3e12b21b66
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 11 additions and 3 deletions

View File

@ -1,7 +1,13 @@
<view class="van-checkbox custom-class"> <view class="van-checkbox custom-class">
<view class="van-checkbox__icon-wrap" bindtap="toggle"> <view class="van-checkbox__icon-wrap" bindtap="toggle">
<slot wx:if="{{ useIconSlot }}" name="icon" /> <slot wx:if="{{ useIconSlot }}" name="icon" />
<van-icon class="{{ iconClass }}" custom-class="icon-class" wx:else name="success" /> <van-icon
wx:else
name="success"
class="{{ iconClass }}"
custom-class="icon-class"
custom-style="line-height: 20px;"
/>
</view> </view>
<view class="van-checkbox__label van-checkbox__label--{{ labelPosition }} label-class" bindtap="onClickLabel"> <view class="van-checkbox__label van-checkbox__label--{{ labelPosition }} label-class" bindtap="onClickLabel">
<slot /> <slot />

View File

@ -27,6 +27,7 @@
| info | 图标右上角文字提示 | `String | Number` | - | | info | 图标右上角文字提示 | `String | Number` | - |
| color | 图标颜色 | `String` | `inherit` | | color | 图标颜色 | `String` | `inherit` |
| size | 图标大小,如 `20px``2em` | `String` | `inherit` | | size | 图标大小,如 `20px``2em` | `String` | `inherit` |
| custom-style | 自定义样式 | `String` | - |
| class-prefix | 类名前缀 | `String` | `van-icon` | | class-prefix | 类名前缀 | `String` | `van-icon` |
### Event ### Event

View File

@ -6,6 +6,7 @@ VantComponent({
name: String, name: String,
size: String, size: String,
color: String, color: String,
customStyle: String,
classPrefix: { classPrefix: {
type: String, type: String,
value: 'van-icon' value: 'van-icon'

View File

@ -1,6 +1,6 @@
<view <view
class="custom-class {{ classPrefix }} {{ classPrefix }}-{{ name }}" class="custom-class {{ classPrefix }} {{ classPrefix }}-{{ name }}"
style="{{ color ? 'color: ' + color : '' }}; {{ size ? 'font-size: ' + size : '' }}" style="{{ color ? 'color: ' + color + ';' : '' }}{{ size ? 'font-size: ' + size + ';' : '' }}{{ customStyle }}"
bind:tap="onClick" bind:tap="onClick"
> >
<view wx:if="{{ info !== null }}" class="van-icon__info">{{ info }}</view> <view wx:if="{{ info !== null }}" class="van-icon__info">{{ info }}</view>

2
types/index.d.ts vendored
View File

@ -31,7 +31,7 @@ export type CombinedComponentInstance<
Weapp.Component & Weapp.Component &
Weapp.FormField & Weapp.FormField &
ComponentInstance & { ComponentInstance & {
data: Data & RecordToAny<Props> & RecordToReturn<Computed>; data: Data & LooseObject & RecordToAny<Props> & RecordToReturn<Computed>;
}; };
export type VantComponentOptions< export type VantComponentOptions<