diff --git a/packages/search/README.md b/packages/search/README.md index 60303292..06fb6c64 100644 --- a/packages/search/README.md +++ b/packages/search/README.md @@ -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 diff --git a/packages/search/index.ts b/packages/search/index.ts index 22ac7a00..be0efa56 100644 --- a/packages/search/index.ts +++ b/packages/search/index.ts @@ -56,6 +56,10 @@ VantComponent({ type: String, value: 'clear', }, + cursorSpacing: { + type: Number, + value: 0, + }, }, methods: { diff --git a/packages/search/index.wxml b/packages/search/index.wxml index e772ee4b..cbcb47af 100644 --- a/packages/search/index.wxml +++ b/packages/search/index.wxml @@ -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" diff --git a/packages/search/test/__snapshots__/demo.spec.ts.snap b/packages/search/test/__snapshots__/demo.spec.ts.snap index 55e28fc3..28df7587 100644 --- a/packages/search/test/__snapshots__/demo.spec.ts.snap +++ b/packages/search/test/__snapshots__/demo.spec.ts.snap @@ -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}}"