InputModeMapping
[ Interface ]
export interface InputModeMapping extends Dictionary<string> {
text: string;
decimal: string;
numeric: string;
}Properties
Name | Type | Description |
|---|---|---|
text | Keyboard layout path for texts and unknown input elements. Can be an empty string. Falls back to "Text" of the fallback language. | |
decimal | Keyboard layout path for decimal input elements (possible fraction input). Can be an empty string. Fallback to "decimal" of the fallback language, "text" keyboard file of this language or "text" of the fallback language. | |
numeric | Keyboard layout path for numeric input elements (input without decimal places). Can be empty. Fallback to "decimal" of this language, "numeric"/"decimal" of the fallback language, "text" keyboard file of this language or "text" of the fallback language. |
![]() | Available from 1.8 |
