mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
feat(Field): add inputmode props (#13208)
This commit is contained in:
parent
eca18a1dad
commit
07e1634882
@ -9,6 +9,7 @@ import {
|
|||||||
defineComponent,
|
defineComponent,
|
||||||
type PropType,
|
type PropType,
|
||||||
type ExtractPropTypes,
|
type ExtractPropTypes,
|
||||||
|
type HTMLAttributes,
|
||||||
} from 'vue';
|
} from 'vue';
|
||||||
|
|
||||||
// Utils
|
// Utils
|
||||||
@ -112,6 +113,7 @@ export const fieldSharedProps = {
|
|||||||
type: Boolean,
|
type: Boolean,
|
||||||
default: null,
|
default: null,
|
||||||
},
|
},
|
||||||
|
inputmode: String as PropType<HTMLAttributes['inputmode']>,
|
||||||
};
|
};
|
||||||
|
|
||||||
export const fieldProps = extend({}, cellSharedProps, fieldSharedProps, {
|
export const fieldProps = extend({}, cellSharedProps, fieldSharedProps, {
|
||||||
@ -539,10 +541,12 @@ export default defineComponent({
|
|||||||
};
|
};
|
||||||
|
|
||||||
if (props.type === 'textarea') {
|
if (props.type === 'textarea') {
|
||||||
return <textarea {...inputAttrs} />;
|
return <textarea {...inputAttrs} inputmode={props.inputmode} />;
|
||||||
}
|
}
|
||||||
|
|
||||||
return <input {...mapInputType(props.type)} {...inputAttrs} />;
|
return (
|
||||||
|
<input {...mapInputType(props.type, props.inputmode)} {...inputAttrs} />
|
||||||
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
const renderLeftIcon = () => {
|
const renderLeftIcon = () => {
|
||||||
|
@ -91,27 +91,26 @@ export function resizeTextarea(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export function mapInputType(type: FieldType): {
|
export function mapInputType(
|
||||||
|
type: FieldType,
|
||||||
|
inputmode?: HTMLAttributes['inputmode'],
|
||||||
|
): {
|
||||||
type: InputHTMLAttributes['type'];
|
type: InputHTMLAttributes['type'];
|
||||||
inputmode?: HTMLAttributes['inputmode'];
|
inputmode?: HTMLAttributes['inputmode'];
|
||||||
} {
|
} {
|
||||||
// type="number" is weird in iOS, and can't prevent dot in Android
|
// type="number" is weird in iOS, and can't prevent dot in Android
|
||||||
// so use inputmode to set keyboard in modern browsers
|
// so use inputmode to set keyboard in modern browsers
|
||||||
if (type === 'number') {
|
if (type === 'number') {
|
||||||
return {
|
type = 'text';
|
||||||
type: 'text',
|
inputmode ??= 'decimal';
|
||||||
inputmode: 'decimal',
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (type === 'digit') {
|
if (type === 'digit') {
|
||||||
return {
|
type = 'tel';
|
||||||
type: 'tel',
|
inputmode ??= 'numeric';
|
||||||
inputmode: 'numeric',
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return { type };
|
return { type, inputmode };
|
||||||
}
|
}
|
||||||
|
|
||||||
// get correct length of emoji
|
// get correct length of emoji
|
||||||
|
Loading…
x
Reference in New Issue
Block a user