mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
[improvement] Icon: add custom-style prop (#677)
This commit is contained in:
parent
b08e90e40d
commit
3e12b21b66
@ -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 />
|
||||||
|
@ -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
|
||||||
|
@ -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'
|
||||||
|
@ -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
2
types/index.d.ts
vendored
@ -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<
|
||||||
|
Loading…
x
Reference in New Issue
Block a user