fix(mobile): property input field keyboard mode (#8982)

This commit is contained in:
pengx17 2024-12-03 01:51:59 +00:00
parent 6873a947fa
commit 671885d510
No known key found for this signature in database
GPG Key ID: 23F23D9E8B3971ED
2 changed files with 6 additions and 2 deletions

View File

@ -38,7 +38,8 @@ const DesktopNumberValue = ({ value, onChange }: PropertyValueProps) => {
>
<input
className={styles.numberPropertyValueInput}
type={'number'}
type="number"
inputMode="decimal"
value={tempValue || ''}
onChange={handleOnChange}
onBlur={handleBlur}
@ -109,7 +110,8 @@ const MobileNumberValue = ({
>
<input
className={styles.mobileNumberPropertyValueInput}
type={'number'}
type="number"
inputMode="decimal"
value={tempValue || ''}
onChange={handleOnChange}
onBlur={handleBlur}

View File

@ -102,6 +102,8 @@ export const SearchInput = forwardRef<HTMLInputElement, SearchInputProps>(
<input
ref={inputRef}
{...attrs}
type="search"
inputMode="search"
value={inputValue}
onInput={handleInput}
className={styles.input}