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