feat(Search): cursor-spacing props for search component (#5498)

This commit is contained in:
zjy4fun 2023-07-27 20:38:20 +08:00 committed by GitHub
parent 589be648f2
commit f975d2b37d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 12 additions and 6 deletions

View File

@ -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

View File

@ -56,6 +56,10 @@ VantComponent({
type: String,
value: 'clear',
},
cursorSpacing: {
type: Number,
value: 0,
},
},
methods: {

View File

@ -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"

View File

@ -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}}"