I´m trying to change the type of the input created by the component. It is possible to create an input of type "password" or any other types?
Like this:
<Keyboard
value={this.state.value}
name='keyboard'
options={{
type: "input",
inputType: "password"
}}
[...]
Thanks