feat(Field): Field supports holdKeyboard (#2255)

This commit is contained in:
mars 2019-11-05 20:47:05 +08:00 committed by neverland
parent 0918833fa8
commit b2a1222d2b
3 changed files with 4 additions and 0 deletions

View File

@ -201,6 +201,7 @@ Page({
| right-icon | 右侧图标名称或图片链接,可选值见 [Icon 组件](#/icon) | *string* | - | - | | right-icon | 右侧图标名称或图片链接,可选值见 [Icon 组件](#/icon) | *string* | - | - |
| confirm-type | 设置键盘右下角按钮的文字,仅在 type='text' 时生效 | *string* | `done` | - | | confirm-type | 设置键盘右下角按钮的文字,仅在 type='text' 时生效 | *string* | `done` | - |
| confirm-hold | 点击键盘右下角按钮时是否保持键盘不收起,在 type='textarea' 时无效 | *boolean* | `false` | - | | confirm-hold | 点击键盘右下角按钮时是否保持键盘不收起,在 type='textarea' 时无效 | *boolean* | `false` | - |
| hold-keyboard | focus 时,点击页面的时候不收起键盘 | *boolean* | `false` | 2.8.2 |
| cursor-spacing | 输入框聚焦时底部与键盘的距离 | *number* | `50` | - | | cursor-spacing | 输入框聚焦时底部与键盘的距离 | *number* | `50` | - |
| adjust-position | 键盘弹起时,是否自动上推页面 | *boolean* | `true` | - | | adjust-position | 键盘弹起时,是否自动上推页面 | *boolean* | `true` | - |
| show-confirm-bar | 是否显示键盘上方带有”完成“按钮那一栏,只对 textarea 有效 | *boolean* | `true` | - | | show-confirm-bar | 是否显示键盘上方带有”完成“按钮那一栏,只对 textarea 有效 | *boolean* | `true` | - |

View File

@ -31,6 +31,7 @@ VantComponent({
customStyle: String, customStyle: String,
confirmType: String, confirmType: String,
confirmHold: Boolean, confirmHold: Boolean,
holdKeyboard: Boolean,
errorMessage: String, errorMessage: String,
arrowDirection: String, arrowDirection: String,
placeholderStyle: String, placeholderStyle: String,

View File

@ -32,6 +32,7 @@
cursor-spacing="{{ cursorSpacing }}" cursor-spacing="{{ cursorSpacing }}"
adjust-position="{{ adjustPosition }}" adjust-position="{{ adjustPosition }}"
show-confirm-bar="{{ showConfirmBar }}" show-confirm-bar="{{ showConfirmBar }}"
hold-keyboard="{{ holdKeyboard }}"
selection-end="{{ selectionEnd }}" selection-end="{{ selectionEnd }}"
selection-start="{{ selectionStart }}" selection-start="{{ selectionStart }}"
bindinput="onInput" bindinput="onInput"
@ -53,6 +54,7 @@
placeholder-class="{{ utils.bem('field__placeholder', { error }) }}" placeholder-class="{{ utils.bem('field__placeholder', { error }) }}"
confirm-type="{{ confirmType }}" confirm-type="{{ confirmType }}"
confirm-hold="{{ confirmHold }}" confirm-hold="{{ confirmHold }}"
hold-keyboard="{{ holdKeyboard }}"
cursor-spacing="{{ cursorSpacing }}" cursor-spacing="{{ cursorSpacing }}"
adjust-position="{{ adjustPosition }}" adjust-position="{{ adjustPosition }}"
selection-end="{{ selectionEnd }}" selection-end="{{ selectionEnd }}"