Sorry, but you either have no stories or none are selected somehow.
If the problem persists, check the browser console, or the terminal you've run Storybook from.
For capturing information.
The input
component enables the user to input text into a form. It takes a type
prop.
A multi-line text input field. The cols
and row
props enable you to determine the size of the input field.
The range slider component enables you to set a min
and max
props.
The Select
component accepts an options
prop for an array of values to iterate as options for the user.
The Check
component accepts a disabled
and type
prop. Further support scheduled.
The Radio
component accepts a disabled
and type
prop. Further support scheduled.
The Toggle
component accepts an indicatorColor
prop.
import { FormGroup, Label, Select } from 'ui-neu';
Props for each of the components are included below. This is still under development and changes are anticipated to occur in upcoming releases.
Name | Description | Default |
---|---|---|
disabled | Select whether input is disabled. bool | false |
id | string | - |
label | string | - |
name | string | - |
Name | Description | Default |
---|---|---|
disabled | Select whether input is disabled. bool | false |
id | string | - |
label | string | - |
name | string | - |
Name | Description | Default |
---|---|---|
children | Pass children to include text. string | - |
Name | Description | Default |
---|---|---|
placeholder | Placeholder text. string | - |
type | Choose an input type. string | - |
name | string | - |
id | string | - |
Name | Description | Default |
---|---|---|
children | string | - |
id | string | - |
Name | Description | Default |
---|---|---|
children | string | - |
value | string | - |
options* | array | - |
Name | Description | Default |
---|---|---|
min | number | 0 |
max | number | 100 |
Name | Description | Default |
---|---|---|
cols | number | 3 |
row | number | 3 |
placeholder | string | - |
id | string | - |
name | string | - |
Name | Description | Default |
---|---|---|
indicatorColor | string | 'rgba(245, 203, 122, 1)' |