A multi type input component that supports standard text, email, tel.
Name | Type | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
props | object | Component props. Properties
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ref | object | | Ref to the component. |
- Since
- 1.1.15
- Source
The range component.
- Type:
- JSX.
Element
import Range from '@gravityforms/components/react/admin/elements/Range';
return (
<Range
max={ 100 }
min={ 0 }
name="range-name"
onChange={ () => {} }
step={ 5 }
value={ 50 }
/>
);
Methods
(inner) getValueInput() → {JSX.Element}
Get the value input for the range component.
- Since
- 1.1.15
- Source
The value input react markup.
- Type:
- JSX.
Element