mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
feat(Search): cursor-spacing props for search component (#5498)
This commit is contained in:
parent
589be648f2
commit
f975d2b37d
@ -136,6 +136,7 @@ Page({
|
|||||||
| use-right-icon-slot | 是否使用输入框右侧图标 slot | _boolean_ | `false` |
|
| use-right-icon-slot | 是否使用输入框右侧图标 slot | _boolean_ | `false` |
|
||||||
| left-icon | 输入框左侧图标名称或图片链接,可选值见 Icon 组件(如果设置了 use-left-icon-slot,则该属性无效) | _string_ | `search` |
|
| left-icon | 输入框左侧图标名称或图片链接,可选值见 Icon 组件(如果设置了 use-left-icon-slot,则该属性无效) | _string_ | `search` |
|
||||||
| right-icon | 输入框右侧图标名称或图片链接,可选值见 Icon 组件(如果设置了 use-right-icon-slot,则该属性无效) | _string_ | - |
|
| right-icon | 输入框右侧图标名称或图片链接,可选值见 Icon 组件(如果设置了 use-right-icon-slot,则该属性无效) | _string_ | - |
|
||||||
|
| cursor-spacing | 输入框聚焦时底部与键盘的距离 | _number_ | `0` |
|
||||||
|
|
||||||
### Events
|
### Events
|
||||||
|
|
||||||
|
@ -56,6 +56,10 @@ VantComponent({
|
|||||||
type: String,
|
type: String,
|
||||||
value: 'clear',
|
value: 'clear',
|
||||||
},
|
},
|
||||||
|
cursorSpacing: {
|
||||||
|
type: Number,
|
||||||
|
value: 0,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
|
@ -28,6 +28,7 @@
|
|||||||
input-class="input-class"
|
input-class="input-class"
|
||||||
placeholder="{{ placeholder }}"
|
placeholder="{{ placeholder }}"
|
||||||
placeholder-style="{{ placeholderStyle }}"
|
placeholder-style="{{ placeholderStyle }}"
|
||||||
|
cursor-spacing="{{ cursorSpacing }}"
|
||||||
custom-style="padding: 5px 10px 5px 0; background-color: transparent;"
|
custom-style="padding: 5px 10px 5px 0; background-color: transparent;"
|
||||||
bind:blur="onBlur"
|
bind:blur="onBlur"
|
||||||
bind:focus="onFocus"
|
bind:focus="onFocus"
|
||||||
|
@ -73,7 +73,7 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
confirmHold="{{false}}"
|
confirmHold="{{false}}"
|
||||||
confirmType="search"
|
confirmType="search"
|
||||||
cursor="{{-1}}"
|
cursor="{{-1}}"
|
||||||
cursorSpacing="{{50}}"
|
cursorSpacing="{{0}}"
|
||||||
disabled="{{false}}"
|
disabled="{{false}}"
|
||||||
focus="{{false}}"
|
focus="{{false}}"
|
||||||
holdKeyboard="{{false}}"
|
holdKeyboard="{{false}}"
|
||||||
@ -184,7 +184,7 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
confirmHold="{{false}}"
|
confirmHold="{{false}}"
|
||||||
confirmType="search"
|
confirmType="search"
|
||||||
cursor="{{-1}}"
|
cursor="{{-1}}"
|
||||||
cursorSpacing="{{50}}"
|
cursorSpacing="{{0}}"
|
||||||
disabled="{{false}}"
|
disabled="{{false}}"
|
||||||
focus="{{false}}"
|
focus="{{false}}"
|
||||||
holdKeyboard="{{false}}"
|
holdKeyboard="{{false}}"
|
||||||
@ -303,7 +303,7 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
confirmHold="{{false}}"
|
confirmHold="{{false}}"
|
||||||
confirmType="search"
|
confirmType="search"
|
||||||
cursor="{{-1}}"
|
cursor="{{-1}}"
|
||||||
cursorSpacing="{{50}}"
|
cursorSpacing="{{0}}"
|
||||||
disabled="{{false}}"
|
disabled="{{false}}"
|
||||||
focus="{{false}}"
|
focus="{{false}}"
|
||||||
holdKeyboard="{{false}}"
|
holdKeyboard="{{false}}"
|
||||||
@ -410,7 +410,7 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
confirmHold="{{false}}"
|
confirmHold="{{false}}"
|
||||||
confirmType="search"
|
confirmType="search"
|
||||||
cursor="{{-1}}"
|
cursor="{{-1}}"
|
||||||
cursorSpacing="{{50}}"
|
cursorSpacing="{{0}}"
|
||||||
disabled="{{true}}"
|
disabled="{{true}}"
|
||||||
focus="{{false}}"
|
focus="{{false}}"
|
||||||
holdKeyboard="{{false}}"
|
holdKeyboard="{{false}}"
|
||||||
@ -517,7 +517,7 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
confirmHold="{{false}}"
|
confirmHold="{{false}}"
|
||||||
confirmType="search"
|
confirmType="search"
|
||||||
cursor="{{-1}}"
|
cursor="{{-1}}"
|
||||||
cursorSpacing="{{50}}"
|
cursorSpacing="{{0}}"
|
||||||
disabled="{{false}}"
|
disabled="{{false}}"
|
||||||
focus="{{false}}"
|
focus="{{false}}"
|
||||||
holdKeyboard="{{false}}"
|
holdKeyboard="{{false}}"
|
||||||
@ -631,7 +631,7 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
confirmHold="{{false}}"
|
confirmHold="{{false}}"
|
||||||
confirmType="search"
|
confirmType="search"
|
||||||
cursor="{{-1}}"
|
cursor="{{-1}}"
|
||||||
cursorSpacing="{{50}}"
|
cursorSpacing="{{0}}"
|
||||||
disabled="{{false}}"
|
disabled="{{false}}"
|
||||||
focus="{{false}}"
|
focus="{{false}}"
|
||||||
holdKeyboard="{{false}}"
|
holdKeyboard="{{false}}"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user