Input
Importβ
import { Input } from '@resultadosdigitais/tangram-components'
Propertiesβ
disabled
β
Type | bool |
---|---|
Default | false |
Descriptionβ
When the value is true
, makes the element not mutable, focusable, or even submitted with the form.
The user can neither edit nor focus on the control.
error
β
Type | bool |
---|---|
Default | false |
Descriptionβ
When the value is true
, changes the layout to demonstrate that an error has occurred.
success
β
Type | bool |
---|---|
Default | false |
Descriptionβ
When the value is true
, changes the layout to demonstrate that something positive has happened.
placeholder
β
prefix
β
suffix
β
defaultValue
β
value
β
onChange
β
Type | func |
---|---|
Param | event React.SyntheticEvent - The event source of the callback. |
Descriptionβ
Callback fired when the value is changed.
<Input
name="example"
onChange={function (event) {
const { name, value } = event.target;
console.log(`The input's name is ${name} and the value is ${value}`);
}}
/>